Move token management to separate view for admins only

This commit is contained in:
Johannes Zellner
2016-06-07 22:53:36 +02:00
parent 3231fe7874
commit 3540f2c197
6 changed files with 303 additions and 283 deletions

View File

@@ -54,6 +54,9 @@ app.config(['$routeProvider', function ($routeProvider) {
}).when('/support', {
controller: 'SupportController',
templateUrl: 'views/support.html'
}).when('/tokens', {
controller: 'TokensController',
templateUrl: 'views/tokens.html'
}).otherwise({ redirectTo: '/'});
}]);