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/taskgroup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ipalib/plugins/taskgroup.py') diff --git a/ipalib/plugins/taskgroup.py b/ipalib/plugins/taskgroup.py index 4835266e..56d2238e 100644 --- a/ipalib/plugins/taskgroup.py +++ b/ipalib/plugins/taskgroup.py @@ -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', -- cgit