mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:26:02 -04:00
Implement password changing (finally) along with a start on making client/server auth more general.
This commit is contained in:
parent
72d8406409
commit
d98660a60d
7 changed files with 236 additions and 49 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue