diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-03-01 12:30:29 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-03-01 15:43:35 -0500 |
commit | 2dd0fb9200421c39a6303f733d56834ffe863483 (patch) | |
tree | 4373f029008e5dfd005b3ecd6381124c39bb0cb4 | |
parent | b6ca0f210c093805f15177761b13070c6c246b34 (diff) | |
download | freeipa-2dd0fb9200421c39a6303f733d56834ffe863483.tar.gz freeipa-2dd0fb9200421c39a6303f733d56834ffe863483.tar.xz freeipa-2dd0fb9200421c39a6303f733d56834ffe863483.zip |
Removed association facets based on memberofindirect.
Association facets based on memberofindirect attribute have been
removed because the attribute is non-assignable.
Ticket 1027
-rw-r--r-- | install/ui/entity.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js index 01ad47eb7..f8e61af8e 100644 --- a/install/ui/entity.js +++ b/install/ui/entity.js @@ -194,6 +194,7 @@ IPA.entity = function (spec) { // skip non-assignable associations if (attribute_member === 'memberindirect') continue; + if (attribute_member === 'memberofindirect') continue; if (attribute_member === 'enrolledby') continue; var other_entities = attribute_members[attribute_member]; |