Add new routes to the router
This commit is contained in:
parent
792d39ac93
commit
3e40fcf147
|
@ -32,6 +32,9 @@ Router.map(function() {
|
||||||
this.route('allocation', { path: '/:allocation_id' }, function() {
|
this.route('allocation', { path: '/:allocation_id' }, function() {
|
||||||
this.route('task', { path: '/:name' }, function() {
|
this.route('task', { path: '/:name' }, function() {
|
||||||
this.route('logs');
|
this.route('logs');
|
||||||
|
this.route('fs', function() {
|
||||||
|
this.route('path', { path: '/*path' });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue