diff options
author | Erik Johnston <erikj@jki.re> | 2019-02-20 07:47:31 +0000 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2019-02-20 18:47:31 +1100 |
commit | dbdc565dfdca0e689f816b7614dea6530cd54843 (patch) | |
tree | ff0717180b6b722527890862cc3fb46d09522f72 /synapse/handlers/__init__.py | |
parent | Run unit tests against python 3.7 (#4677) (diff) | |
download | synapse-dbdc565dfdca0e689f816b7614dea6530cd54843.tar.xz |
Fix registration on workers (#4682)
* Move RegistrationHandler init to HomeServer * Move post registration actions to RegistrationHandler * Add post regisration replication endpoint * Newsfile
Diffstat (limited to 'synapse/handlers/__init__.py')
-rw-r--r-- | synapse/handlers/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/__init__.py b/synapse/handlers/__init__.py index 413425fed1..2dd183018a 100644 --- a/synapse/handlers/__init__.py +++ b/synapse/handlers/__init__.py @@ -17,7 +17,6 @@ from .admin import AdminHandler from .directory import DirectoryHandler from .federation import FederationHandler from .identity import IdentityHandler -from .register import RegistrationHandler from .search import SearchHandler @@ -41,7 +40,6 @@ class Handlers(object): """ def __init__(self, hs): - self.registration_handler = RegistrationHandler(hs) self.federation_handler = FederationHandler(hs) self.directory_handler = DirectoryHandler(hs) self.admin_handler = AdminHandler(hs) |