Added check_uid command for services, defaults to using check_user

This commit is contained in:
2010-09-21 11:59:37 +01:00
parent df22ba1807
commit 9d6ab573d5
2 changed files with 5 additions and 1 deletions

View File

@@ -39,6 +39,10 @@ class BaseService():
""" Check if the username exists """
return False
def check_uid(self, uid):
""" Check if a UID exists """
return self.check_user(uid)
def delete_user(self, uid):
""" Delete a user by uid """
return True