2017-12-15 21:39:18 +00:00
|
|
|
import EmberRouter from '@ember/routing/router';
|
2017-09-19 14:47:10 +00:00
|
|
|
import config from './config/environment';
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
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() {
|
2018-08-14 19:54:54 +00:00
|
|
|
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');
|
2018-07-19 23:57:44 +00:00
|
|
|
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() {
|
2017-10-30 20:39:15 +00:00
|
|
|
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');
|
|
|
|
}
|
2017-09-29 00:18:28 +00:00
|
|
|
|
|
|
|
this.route('not-found', { path: '/*' });
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default Router;
|