From f25817cd87a05e0d9abb19ac2b7cedde5693a6e4 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Thu, 20 Jun 2019 12:02:06 -0700 Subject: [PATCH] Add new routes to the router --- ui/app/router.js | 3 +++ 1 file changed, 3 insertions(+) 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' }); + }); }); }); });