diff --git a/ui/app/router.js b/ui/app/router.js index 2c298fa71..c27cd4c2d 100644 --- a/ui/app/router.js +++ b/ui/app/router.js @@ -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' }); + }); }); }); });