mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-30 10:47:08 -06:00
861cda3cb5
Create separate object for Users and Groups (using same base class) Check for uniqueness before adding new users and groups Remove user_container from everything but add operations Abstract out a number of functions that are common across users and groups Make sure all strings passed in to be in a filter are checked Add new error message: No modifications specified
8 lines
100 B
Python
8 lines
100 B
Python
from ipa.entity import Entity
|
|
|
|
class Group(Entity):
|
|
|
|
def __init2__(self):
|
|
pass
|
|
|