summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/user.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-10-04 17:45:40 -0400
committerSimo Sorce <ssorce@redhat.com>2010-10-28 15:15:52 -0400
commitc25d62965af9dffc655d659dfcd1f39e8d08e66c (patch)
tree7b939938c863b67fd65253f45d9d486b58b92627 /ipalib/plugins/user.py
parent47629a604d7f312ccb32e6b260782cb7c5c70954 (diff)
downloadfreeipa-c25d62965af9dffc655d659dfcd1f39e8d08e66c.tar.gz
freeipa-c25d62965af9dffc655d659dfcd1f39e8d08e66c.tar.xz
freeipa-c25d62965af9dffc655d659dfcd1f39e8d08e66c.zip
Populate indirect members when showing a group object.
This is done by creating a new attribute, memberindirect, to hold this indirect membership. The new function get_members() can return all members or just indirect or direct. We are only using it to retrieve indirect members currently. This also: * Moves all member display attributes into baseldap.py to reduce duplication * Adds netgroup nesting * Use a unique object name in hbacsvc and hbacsvcgroup ticket 296
Diffstat (limited to 'ipalib/plugins/user.py')
-rw-r--r--ipalib/plugins/user.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py
index fb0da4800..6bfb7b6fb 100644
--- a/ipalib/plugins/user.py
+++ b/ipalib/plugins/user.py
@@ -139,22 +139,6 @@ class user(LDAPObject):
cli_name='street',
label=_('Street address'),
),
- Str('memberof_group?',
- label=_('Groups'),
- flags=['no_create', 'no_update', 'no_search'],
- ),
- Str('memberof_netgroup?',
- label=_('Netgroups'),
- flags=['no_create', 'no_update', 'no_search'],
- ),
- Str('memberof_rolegroup?',
- label=_('Rolegroups'),
- flags=['no_create', 'no_update', 'no_search'],
- ),
- Str('memberof_taskgroup?',
- label=_('Taskgroups'),
- flags=['no_create', 'no_update', 'no_search'],
- ),
Str('telephonenumber*',
cli_name='phone',
label=_('Telephone Number') ),