mirror of https://github.com/rancher/ui.git
10 lines
335 B
JavaScript
10 lines
335 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',{path:'/pipelines'});
|
|
this.route('new-pipeline', {path: '/addPipeline'});
|
|
this.route('pipeline', {path: '/pipelines/:pipeline_id'});
|
|
});
|