Implement password changing (finally) along with a start on making client/server auth more general.

This commit is contained in:
David Baker 2015-03-23 14:20:28 +00:00
parent 72d8406409
commit d98660a60d
7 changed files with 236 additions and 49 deletions

View file

@ -29,6 +29,7 @@ from .typing import TypingNotificationHandler
from .admin import AdminHandler
from .appservice import ApplicationServicesHandler
from .sync import SyncHandler
from .auth import AuthHandler
class Handlers(object):
@ -58,3 +59,4 @@ class Handlers(object):
hs, ApplicationServiceApi(hs)
)
self.sync_handler = SyncHandler(hs)
self.auth_handler = AuthHandler(hs)