Add new routes to the router

This commit is contained in:
Michael Lange 2019-06-20 12:02:06 -07:00
parent 792d39ac93
commit 3e40fcf147
1 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,9 @@ Router.map(function() {
this.route('allocation', { path: '/:allocation_id' }, function() {
this.route('task', { path: '/:name' }, function() {
this.route('logs');
this.route('fs', function() {
this.route('path', { path: '/*path' });
});
});
});
});