Actually added working password reset functions. Fixed views as required.

This commit is contained in:
2010-03-18 18:16:18 +00:00
parent 606ddd3cd7
commit 42588e1909
5 changed files with 37 additions and 2 deletions

View File

@@ -50,6 +50,10 @@ class BaseService():
""" Enable a user by uid """
pass
def reset_password(self, uid, password):
""" Reset the user's password """
pass
def login(uid):
""" Login the user and provide cookies back """
pass