mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
Display membership attributes (member, memberOf) by default in show/find.
This commit is contained in:
parent
914d2cd4df
commit
6b38de9454
@ -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',
|
||||
|
@ -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',
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user