summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-12-09 16:37:32 +0100
committerEndi S. Dewata <edewata@redhat.com>2011-12-09 22:46:19 +0000
commit91dc7c3d9a7aea91807e98ff7b58643b352825cd (patch)
tree7034c1f387052a4022b28fb557940e5da9b2bc79
parent34e357e7138ee838583f69001c1d2ad067c98b27 (diff)
downloadfreeipa-91dc7c3d9a7aea91807e98ff7b58643b352825cd.tar.gz
freeipa-91dc7c3d9a7aea91807e98ff7b58643b352825cd.tar.xz
freeipa-91dc7c3d9a7aea91807e98ff7b58643b352825cd.zip
Reordered facets in ACI
Facets in ACI have new order: * Roles: members, privileges, settings * Privileges: permissions, settings, roles * Permissions: settings, privileges https://fedorahosted.org/freeipa/ticket/2104
-rw-r--r--install/ui/aci.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js
index 30f5de792..c1f1ce9cc 100644
--- a/install/ui/aci.js
+++ b/install/ui/aci.js
@@ -32,7 +32,7 @@ IPA.aci.permission_entity = function(spec) {
that.init = function() {
that.entity_init();
- that.builder.facet_groups([ 'privilege' , 'settings' ]).
+ that.builder.facet_groups(['settings', 'privilege']).
search_facet({
columns: [ 'cn' ]
}).
@@ -207,7 +207,7 @@ IPA.aci.privilege_entity = function(spec) {
that.init = function() {
that.entity_init();
- that.builder.facet_groups([ 'role', 'settings', 'permission' ]).
+ that.builder.facet_groups(['permission', 'settings', 'role']).
search_facet({
columns: [
'cn',
@@ -264,7 +264,7 @@ IPA.aci.role_entity = function(spec) {
that.init = function() {
that.entity_init();
- that.builder.facet_groups([ 'member', 'settings', 'privilege' ]).
+ that.builder.facet_groups(['member', 'privilege', 'settings']).
search_facet({
columns: [
'cn',