diff options
-rw-r--r-- | install/ui/aci.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index 21ffa718e..27d9589aa 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -396,6 +396,12 @@ IPA.aci.delegation_entity = function(spec) { fields: [ 'aciname', { + type: 'checkboxes', + name: 'permissions', + required: true, + options: IPA.create_options(['read', 'write']) + }, + { type: 'entity_select', name: 'group', other_entity: that.group_entity, @@ -421,6 +427,11 @@ IPA.aci.delegation_entity = function(spec) { fields: [ 'aciname', { + type: 'checkboxes', + name: 'permissions', + options: IPA.create_options(['read', 'write']) + }, + { type: 'entity_select', name: 'group', other_entity: that.group_entity, |