summary refs log tree commit diff
path: root/synapse/handlers/register.py
diff options
context:
space:
mode:
authorDavid Baker <dbkr@users.noreply.github.com>2016-06-02 14:31:35 +0100
committerDavid Baker <dbkr@users.noreply.github.com>2016-06-02 14:31:35 +0100
commitfb2193cc63c8297238423f0df547d4527a41eefc (patch)
treec62b3850a6fefbde1e8ab3bf63b8f279dd3075f0 /synapse/handlers/register.py
parentDisable INCLUDE_ALL_UNREAD_NOTIFS (diff)
parentSplit out the auth handler (diff)
downloadsynapse-fb2193cc63c8297238423f0df547d4527a41eefc.tar.xz
Merge pull request #817 from matrix-org/dbkr/split_out_auth_handler
Split out the auth handler
Diffstat (limited to 'synapse/handlers/register.py')
-rw-r--r--synapse/handlers/register.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py
index 16f33f8371..bbc07b045e 100644
--- a/synapse/handlers/register.py
+++ b/synapse/handlers/register.py
@@ -413,7 +413,7 @@ class RegistrationHandler(BaseHandler):
         defer.returnValue((user_id, token))
 
     def auth_handler(self):
-        return self.hs.get_handlers().auth_handler
+        return self.hs.get_auth_handler()
 
     @defer.inlineCallbacks
     def guest_access_token_for(self, medium, address, inviter_user_id):