diff options
author | Pavel Zuna <pzuna@redhat.com> | 2011-01-04 15:21:18 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-04 21:56:38 -0500 |
commit | 2f2c67cb59f1a797e6f2e0b033cb480489c0df0b (patch) | |
tree | 4dbc3df041b8a1893887f67048fa7f8cf7774e2e /install/static/group.js | |
parent | d6d579ead469e0b4690d6d1eec0f137dd3c40940 (diff) | |
download | freeipa.git-2f2c67cb59f1a797e6f2e0b033cb480489c0df0b.tar.gz freeipa.git-2f2c67cb59f1a797e6f2e0b033cb480489c0df0b.tar.xz freeipa.git-2f2c67cb59f1a797e6f2e0b033cb480489c0df0b.zip |
Improvements to enrollments in the webUI.
TAKE 1
- Enrollement links in the action panel are now sorted by relationships.
- You can only enroll members.
(The webUI made the impression you can enroll parents as well, but it was
broken.)
- When enrolling new members, you can choose not to display already enrolled
ones. (On by default.)
- Couple cosmetic changes.
Diffstat (limited to 'install/static/group.js')
-rw-r--r-- | install/static/group.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/install/static/group.js b/install/static/group.js index 0e7fd070..21345acc 100644 --- a/install/static/group.js +++ b/install/static/group.js @@ -62,13 +62,6 @@ function ipa_group() { }); that.add_facet(facet); - facet = ipa_group_member_user_facet({ - 'name': 'member_user', - 'label': IPA.metadata['user'].label+' '+IPA.messages.association.members, - 'other_entity': 'user' - }); - that.add_facet(facet); - that.create_association_facets(); that.entity_init(); @@ -195,4 +188,4 @@ function ipa_group_member_user_facet(spec) { }; return that; -}
\ No newline at end of file +} |