From b9f539ba19b40361265c7897a73a1f5757ed0e68 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 19 Nov 2010 16:58:55 -0600 Subject: SUDO Commands and Command Groups The SUDO Commands and Command Groups pages have been added under SUDO Rules tab. Similar to HBAC navigation issue, these entities do not have their own tab, so an exception has been added to the navigation code to read sudo-entity parameter to determine the entity being viewed. Fixing this issue will require framework changes. New test data for these operations have been added. --- install/static/hbac.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/static/hbac.js') diff --git a/install/static/hbac.js b/install/static/hbac.js index 12883efa..a6162b8b 100755 --- a/install/static/hbac.js +++ b/install/static/hbac.js @@ -152,7 +152,7 @@ function ipa_hbac_search_facet(spec) { var li = $('li[title=hbacsvc]', action_panel); li.click(function() { var state = {}; - state['entity'] = 'hbacsvc'; + state['hbac-entity'] = 'hbacsvc'; nav_push_state(state); return false; }); @@ -160,7 +160,7 @@ function ipa_hbac_search_facet(spec) { li = $('li[title=hbacsvcgroup]', action_panel); li.click(function() { var state = {}; - state['entity'] = 'hbacsvcgroup'; + state['hbac-entity'] = 'hbacsvcgroup'; nav_push_state(state); return false; }); -- cgit