Remove 'ipaObject' objectClass from rolegroups and taskgroups.

This commit is contained in:
Pavel Zuna 2009-10-29 18:26:41 +01:00 committed by Rob Crittenden
parent f5d63dbecc
commit e1e2e020a7
2 changed files with 2 additions and 4 deletions

View File

@ -33,9 +33,8 @@ class rolegroup(LDAPObject):
container_dn = api.env.container_rolegroup
object_name = 'rolegroup'
object_name_plural = 'rolegroups'
object_class = ['ipaobject', 'groupofnames', 'nestedgroup']
object_class = ['groupofnames', 'nestedgroup']
default_attributes = ['cn', 'description', 'member', 'memberof']
uuid_attribute = 'ipauniqueid'
attribute_names = {
'cn': 'name',
'member user': 'member users',

View File

@ -32,9 +32,8 @@ class taskgroup(LDAPObject):
container_dn = api.env.container_taskgroup
object_name = 'taskgroup'
object_name_plural = 'taskgroups'
object_class = ['ipaobject', 'groupofnames']
object_class = ['groupofnames']
default_attributes = ['cn', 'description', 'member', 'memberof']
uuid_attribute = 'ipauniqueid'
attribute_names = {
'cn': 'name',
'member user': 'member users',