Add new routes to the router

This commit is contained in:
Michael Lange
2019-06-20 12:02:06 -07:00
parent 069455c0e4
commit f25817cd87

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' });
});
});
});
});