GUAC-1053: Migrate to tabbed settings screen. Create user management tab.

This commit is contained in:
Michael Jumper
2015-04-17 16:36:13 -07:00
parent e0a805cb6f
commit 82dee4640c
14 changed files with 445 additions and 268 deletions

View File

@@ -203,7 +203,7 @@ angular.module('navigation').factory('userPageService', ['$injector',
if (canManageUsers) {
pages.push(new Page(
'USER_MENU.ACTION_MANAGE_USERS',
'/manage/modules/users/'
'/settings/users'
));
}
@@ -211,7 +211,7 @@ angular.module('navigation').factory('userPageService', ['$injector',
if (canManageConnections) {
pages.push(new Page(
'USER_MENU.ACTION_MANAGE_CONNECTIONS',
'/manage/modules/connections/'
'/settings/connections'
));
}
@@ -219,7 +219,7 @@ angular.module('navigation').factory('userPageService', ['$injector',
if (canManageSessions) {
pages.push(new Page(
'USER_MENU.ACTION_MANAGE_SESSIONS',
'/manage/modules/sessions/'
'/settings/sessions'
));
}