Merge "Added check_password to abstract backend user API"

This commit is contained in:
Jenkins 2011-08-13 03:16:28 +00:00 committed by Gerrit Code Review
commit a9d5441ac8
1 changed files with 3 additions and 0 deletions

View File

@ -100,6 +100,9 @@ class BaseUserAPI(object):
def user_groups_get_all(self, user_id):
raise NotImplementedError
def check_password(self, user, password):
raise NotImplementedError
class BaseTokenAPI(object):
def create(self, values):