From d6343f4bb079eec744553078c75205abec7e692d Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 13 Jun 2011 23:18:57 -0500 Subject: Fixed self-service links. In self-service mode the user's association facets have been modified such that the entries are not linked since the only available entity is the user entity. A 'link' parameter has been added to IPA.association_facet and IPA.column to control whether to link the entries. The link_handler() method can be used to define how to handle the link. Ticket #1072 --- install/ui/webui.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'install/ui/webui.js') diff --git a/install/ui/webui.js b/install/ui/webui.js index 94c20d4a..c014cea7 100644 --- a/install/ui/webui.js +++ b/install/ui/webui.js @@ -30,6 +30,8 @@ IPA.admin_navigation = function(spec) { spec = spec || {}; + spec.name = 'admin'; + spec.tabs = [ {name: 'identity', label: IPA.messages.tabs.identity, children: [ {entity: 'user'}, @@ -79,10 +81,11 @@ IPA.self_serv_navigation = function(spec) { spec = spec || {}; + spec.name = 'self-service'; + spec.tabs = [ {name: 'identity', label: IPA.messages.tabs.identity, children: [ - {entity: 'user'}, - {entity: 'group'} + {entity: 'user'} ]}]; var that = IPA.navigation(spec); -- cgit