From 0833f594c15d05b6ead7e7ca15aabe34fa09a766 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 19 Nov 2012 13:22:36 +0100 Subject: Editable sshkey, mac address field after upgrade After upgrade, sshkeys of existing users and hosts or mac address are not editable because attribute level rights are not send to Web UI due to lack of ipasshuser/ieee802device object classes. 'w_if_no_aci' attribute flag was introduced to bypass this issue. It makes attribute writable when AttributeLevelRights for the attribute are not present and only when user posses rights for modifying object class attribute. The flag was set for sshkeys_field and mac address field. https://fedorahosted.org/freeipa/ticket/3260 --- install/ui/host.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'install/ui/host.js') diff --git a/install/ui/host.js b/install/ui/host.js index a2b91b6b..6aff2c50 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -71,7 +71,8 @@ IPA.host.entity = function(spec) { }, { type: 'multivalued', - name: 'macaddress' + name: 'macaddress', + flags: ['w_if_no_aci'] } ] }, -- cgit