From d95c9740742fb0281ae472e259d2c365371643e4 Mon Sep 17 00:00:00 2001 From: Alan Dong Date: Mon, 6 May 2024 09:26:25 -0700 Subject: [PATCH] fix: rm v2.dashboard routes --- app/router.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app/router.js b/app/router.js index 44dca8248..59801ca2e 100644 --- a/app/router.js +++ b/app/router.js @@ -145,15 +145,6 @@ Router.map(function route() { this.route('pulls'); } ); - - this.route( - 'dashboard', - { path: '/dashboards' }, - function dashboardsRoute() { - this.route('index', { path: '/' }); - this.route('show', { path: '/:collection_id' }); - } - ); }); }); /* eslint-enable array-callback-return */