ui/lib/monitoring/addon/routes.js

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' })
});