Add change password endpoint

This commit is contained in:
Matt Wright
2013-02-01 18:21:43 -05:00
parent f1f621d178
commit adb2680289
6 changed files with 18 additions and 15 deletions
+2 -2
View File
@@ -81,11 +81,11 @@ class UserDatastore(object):
kwargs['roles'] = roles
return kwargs
def find_user(self, **kwargs):
def find_user(self, *args, **kwargs):
"""Returns a user matching the provided parameters."""
raise NotImplementedError
def find_role(self, name):
def find_role(self, *args, **kwargs):
"""Returns a role matching the provided name."""
raise NotImplementedError