From e1e2e020a748e115a5945a6e5ea44b50a3b98b94 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 29 Oct 2009 18:26:41 +0100 Subject: Remove 'ipaObject' objectClass from rolegroups and taskgroups. --- ipalib/plugins/rolegroup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ipalib/plugins/rolegroup.py') diff --git a/ipalib/plugins/rolegroup.py b/ipalib/plugins/rolegroup.py index fdc63245..0d25516f 100644 --- a/ipalib/plugins/rolegroup.py +++ b/ipalib/plugins/rolegroup.py @@ -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', -- cgit