mirror of https://github.com/rancher/ui.git
10 lines
345 B
JavaScript
10 lines
345 B
JavaScript
import buildRoutes from 'ember-engines/routes';
|
|
|
|
export default buildRoutes(function() {
|
|
this.route('index', { path: '/' });
|
|
this.route('new', { path: '/add' });
|
|
this.route('edit', { path: '/edit/:alert_id' });
|
|
this.route('edit-rule', { path: '/:group_id/rule/:rule_id' });
|
|
this.route('new-rule', { path: '/:group_id/rule/add' });
|
|
});
|