diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-02-29 18:53:11 +0100 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2012-03-02 11:45:21 -0600 |
commit | 31eebda584d556454104a8fbf26974b6b49d9589 (patch) | |
tree | 5a883895aed910941817a7cd750e5dbbae23e679 /install/ui/aci.js | |
parent | afad0775e16e52aa2d6637e809ad748ace838bea (diff) | |
download | freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.tar.gz freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.tar.xz freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.zip |
Removed CSV creation from UI
Creating CSV values in UI is unnecessary and error-prone because server converts them back to list. Possible problems with values containing commas may occur. All occurrences of CSV joining were therefore removed.
https://fedorahosted.org/freeipa/ticket/2227
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r-- | install/ui/aci.js | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index ec3c8065..ba4a22bf 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -46,7 +46,6 @@ IPA.aci.permission_entity = function(spec) { { type: 'rights', name: 'permissions', - join: true, widget: 'rights.permissions' }, { @@ -142,7 +141,6 @@ IPA.aci.permission_entity = function(spec) { { type: 'rights', name: 'permissions', - join: true, widget: 'general.permissions' }, { @@ -407,14 +405,12 @@ IPA.aci.delegation_entity = function(spec) { type: 'entity_select', name: 'memberof', other_entity: that.group_entity, - other_field: 'cn', - join: true + other_field: 'cn' }, { type: 'attributes', name: 'attrs', - object_type: 'user', - join: true + object_type: 'user' } ] } @@ -434,14 +430,12 @@ IPA.aci.delegation_entity = function(spec) { type: 'entity_select', name: 'memberof', other_entity: that.group_entity, - other_field: 'cn', - join: true + other_field: 'cn' }, { type: 'attributes', name: 'attrs', - object_type: 'user', - join: true + object_type: 'user' } ] }); |