open-nomad/ui/app/router.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

import EmberRouter from '@ember/routing/router';
2017-09-19 14:47:10 +00:00
import config from './config/environment';
const Router = EmberRouter.extend({
2017-09-19 14:47:10 +00:00
location: config.locationType,
rootURL: config.rootURL,
});
Router.map(function() {
this.route('jobs', function() {
this.route('run');
2017-10-23 17:27:22 +00:00
this.route('job', { path: '/:job_name' }, function() {
2017-09-19 14:47:10 +00:00
this.route('task-group', { path: '/:name' });
this.route('definition');
this.route('versions');
this.route('deployments');
2018-07-06 23:41:09 +00:00
this.route('evaluations');
this.route('allocations');
2018-08-21 19:06:43 +00:00
this.route('edit');
2017-09-19 14:47:10 +00:00
});
});
2017-10-28 01:23:41 +00:00
this.route('clients', function() {
this.route('client', { path: '/:node_id' });
2017-09-19 14:47:10 +00:00
});
this.route('servers', function() {
this.route('server', { path: '/:agent_id' });
});
this.route('allocations', function() {
this.route('allocation', { path: '/:allocation_id' }, function() {
this.route('task', { path: '/:name' }, function() {
this.route('logs');
});
});
2017-09-19 14:47:10 +00:00
});
this.route('settings', function() {
this.route('tokens');
});
if (config.environment === 'development') {
this.route('freestyle');
}
this.route('not-found', { path: '/*' });
2017-09-19 14:47:10 +00:00
});
export default Router;