From 6b38de9454729743c338f2ce8bea60665fc458ca Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Wed, 21 Oct 2009 16:12:11 +0200 Subject: Display membership attributes (member, memberOf) by default in show/find. --- ipalib/plugins/group.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ipalib/plugins/group.py') diff --git a/ipalib/plugins/group.py b/ipalib/plugins/group.py index afed5d01..b5cc7ca5 100644 --- a/ipalib/plugins/group.py +++ b/ipalib/plugins/group.py @@ -35,7 +35,9 @@ class group(LDAPObject): object_name_plural = 'groups' object_class = ['ipausergroup'] object_class_config = 'ipagroupobjectclasses' - default_attributes = ['cn', 'description', 'gidnumber', 'memberof'] + default_attributes = [ + 'cn', 'description', 'gidnumber', 'member', 'memberof' + ] uuid_attribute = 'ipauniqueid' attribute_names = { 'cn': 'name', -- cgit