summaryrefslogtreecommitdiffstats
path: root/install/ui/group.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/group.js')
-rw-r--r--install/ui/group.js31
1 files changed, 16 insertions, 15 deletions
diff --git a/install/ui/group.js b/install/ui/group.js
index f7e7e51f8..8b7fc46b8 100644
--- a/install/ui/group.js
+++ b/install/ui/group.js
@@ -57,22 +57,23 @@ IPA.entity_factories.group = function () {
input({name: 'gidnumber' }))).
facet(
IPA.group_member_user_facet({
- 'name': 'member_user',
- 'label': 'Users',
- 'other_entity': 'user'
+ 'name': 'member_user'
+ })).
+ facet(
+ IPA.association_facet({
+ name: 'memberof_group',
+ associator: IPA.serial_associator
+ })).
+ facet(
+ IPA.association_facet({
+ name: 'memberof_netgroup',
+ associator: IPA.serial_associator
+ })).
+ facet(
+ IPA.association_facet({
+ name: 'memberof_role',
+ associator: IPA.serial_associator
})).
- association({
- name: 'netgroup',
- associator: 'serial'
- }).
- association({
- name: 'rolegroup',
- associator: 'serial'
- }).
- association({
- name: 'taskgroup',
- associator: 'serial'
- }).
standard_associations();
};