add admin page to show enterprise license status

This commit is contained in:
Dan Cech
2018-10-10 13:04:54 -04:00
parent d20b15834f
commit a4f90fd10d
4 changed files with 94 additions and 7 deletions

View File

@@ -225,6 +225,11 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
component: () => ServerStats,
},
})
.when('/admin/licensing', {
templateUrl: 'public/app/features/admin/partials/licensing.html',
controller: 'AdminLicensingCtrl',
controllerAs: 'ctrl',
})
// LOGIN / SIGNUP
.when('/login', {
templateUrl: 'public/app/partials/login.html',