mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-01 11:47:11 -06:00
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
This commit is contained in:
parent
34e357e713
commit
91dc7c3d9a
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user