folders: should be possible to browse folder using only uid

That is, the slug part of url should be optional.
This commit is contained in:
Marcus Efraimsson 2018-03-13 21:32:37 +01:00
parent 5fbfd67b94
commit 91fa076fb3

View File

@ -104,6 +104,11 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
controller: 'FolderDashboardsCtrl',
controllerAs: 'ctrl',
})
.when('/dashboards/f/:uid', {
templateUrl: 'public/app/features/dashboard/partials/folder_dashboards.html',
controller: 'FolderDashboardsCtrl',
controllerAs: 'ctrl',
})
.when('/org', {
templateUrl: 'public/app/features/org/partials/orgDetails.html',
controller: 'OrgDetailsCtrl',