From 982a8a3d6b285e44b6ed924815c24ec0e02eae5d Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Jan 11 2012 17:04:21 +0000 Subject: 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 --- diff --git a/install/ui/aci.js b/install/ui/aci.js index 30f5de7..c1f1ce9 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',