Display membership attributes (member, memberOf) by default in show/find.

This commit is contained in:
Pavel Zuna 2009-10-21 16:12:11 +02:00 committed by Rob Crittenden
parent 914d2cd4df
commit 6b38de9454
3 changed files with 5 additions and 3 deletions

View File

@ -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',

View File

@ -33,7 +33,7 @@ class netgroup(LDAPObject):
object_name = 'netgroup'
object_name_plural = 'netgroups'
object_class = ['ipaobject', 'ipaassociation', 'ipanisnetgroup']
default_attributes = ['cn', 'description', 'memberof']
default_attributes = ['cn', 'description', 'member', 'memberof']
uuid_attribute = 'ipauniqueid'
attribute_names = {
'cn': 'name',

View File

@ -33,7 +33,7 @@ class taskgroup(LDAPObject):
object_name = 'taskgroup'
object_name_plural = 'taskgroups'
object_class = ['ipaobject', 'groupofnames']
default_attributes = ['cn', 'description', 'memberof']
default_attributes = ['cn', 'description', 'member', 'memberof']
uuid_attribute = 'ipauniqueid'
attribute_names = {
'cn': 'name',