mirror of https://github.com/rancher/ui.git
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
import buildRoutes from 'ember-engines/routes';
|
|
|
|
export default buildRoutes(function() {
|
|
// Define your engine's route map here
|
|
this.route('index', { path: '/' });
|
|
this.route('cluster-setting');
|
|
this.route('project-setting');
|
|
this.route('node-detail', { path: '/:node_id' })
|
|
});
|