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/rest/client/v2_alpha/auth.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/rest/client/v2_alpha/auth.py')
-rw-r--r-- | synapse/rest/client/v2_alpha/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/auth.py b/synapse/rest/client/v2_alpha/auth.py index fa73bdf3a1..f7bb710642 100644 --- a/synapse/rest/client/v2_alpha/auth.py +++ b/synapse/rest/client/v2_alpha/auth.py @@ -129,7 +129,7 @@ class AuthRestServlet(RestServlet): self.hs = hs self.auth = hs.get_auth() self.auth_handler = hs.get_auth_handler() - self.registration_handler = hs.get_handlers().registration_handler + self.registration_handler = hs.get_registration_handler() def on_GET(self, request, stagetype): session = parse_string(request, "session") |