-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathrouter.js
72 lines (60 loc) · 1.86 KB
/
router.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
class Router extends EmberRouter {
location = config.locationType;
rootURL = config.rootURL;
}
Router.map(function() {
this.route('exec', { path: '/exec/:job_name' }, function() {
this.route('task-group', { path: '/:task_group_name' }, function() {
this.route('task', { path: '/:task_name' });
});
});
this.route('jobs', function() {
this.route('run');
this.route('job', { path: '/:job_name' }, function() {
this.route('task-group', { path: '/:name' });
this.route('definition');
this.route('versions');
this.route('deployments');
this.route('evaluations');
this.route('allocations');
});
});
this.route('clients', function() {
this.route('client', { path: '/:node_id' }, function() {
this.route('monitor');
});
});
this.route('servers', function() {
this.route('server', { path: '/:agent_id' }, function() {
this.route('monitor');
});
});
this.route('csi', function() {
this.route('volumes', function() {
this.route('volume', { path: '/:volume_name' });
});
this.route('plugins', function() {
this.route('plugin', { path: '/:plugin_name' }, function() {
this.route('allocations');
});
});
});
this.route('allocations', function() {
this.route('allocation', { path: '/:allocation_id' }, function() {
this.route('fs-root', { path: '/fs' });
this.route('fs', { path: '/fs/*path' });
this.route('task', { path: '/:name' }, function() {
this.route('logs');
this.route('fs-root', { path: '/fs' });
this.route('fs', { path: '/fs/*path' });
});
});
});
this.route('settings', function() {
this.route('tokens');
});
this.route('not-found', { path: '/*' });
});
export default Router;