GUAC-1053: Add user preferences page, visible to all users.

This commit is contained in:
Michael Jumper
2015-04-18 01:20:49 -07:00
parent cdc87825d8
commit c0eda1273f
6 changed files with 84 additions and 1 deletions

View File

@@ -223,6 +223,12 @@ angular.module('navigation').factory('userPageService', ['$injector',
));
}
// Add link to user preferences (always accessible)
pages.push(new Page(
'USER_MENU.ACTION_MANAGE_PREFERENCES',
'/settings/preferences'
));
return pages;
};