summaryrefslogtreecommitdiffstats
path: root/install/static/hbac.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-11-19 16:58:55 -0600
committerAdam Young <ayoung@redhat.com>2010-11-22 15:37:17 -0500
commitb9f539ba19b40361265c7897a73a1f5757ed0e68 (patch)
tree02aa4f7fd0f8c72d775f5a34c3ff3322630e7311 /install/static/hbac.js
parent27d8529a840bb1f54e520ccd70bf7c2113d03069 (diff)
downloadfreeipa-b9f539ba19b40361265c7897a73a1f5757ed0e68.tar.gz
freeipa-b9f539ba19b40361265c7897a73a1f5757ed0e68.tar.xz
freeipa-b9f539ba19b40361265c7897a73a1f5757ed0e68.zip
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.
Diffstat (limited to 'install/static/hbac.js')
-rwxr-xr-xinstall/static/hbac.js4
1 files changed, 2 insertions, 2 deletions
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;
});