mirror of https://github.com/rancher/ui.git
14 lines
463 B
JavaScript
14 lines
463 B
JavaScript
import buildRoutes from 'ember-engines/routes';
|
|
|
|
export default buildRoutes(function() {
|
|
// Define your engine's route map here
|
|
this.route('settings', { path: '/' });
|
|
this.route('pipelines', function() {
|
|
this.route('index', { path: '/' });
|
|
this.route('detail', { path: '/:pipeline_id' });
|
|
this.route('edit', { path: '/:pipeline_id/edit' });
|
|
this.route('run', { path: '/:pipeline_id/run/:run_id' });
|
|
});
|
|
this.route('repositories' );
|
|
});
|