diff options
author | Erik Johnston <erikj@jki.re> | 2016-11-15 16:53:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 16:53:34 +0000 |
commit | dc6cede78e61784731b4af1acba5e6ae962c11fc (patch) | |
tree | b0b23df5e7987df0425c91274e402c5d53ed1a42 /synapse/handlers/auth.py | |
parent | Merge pull request #1617 from matrix-org/erikj/intern_state_dict (diff) | |
parent | Use external ldap auth pacakge (diff) | |
download | synapse-dc6cede78e61784731b4af1acba5e6ae962c11fc.tar.xz |
Merge pull request #1628 from matrix-org/erikj/ldap_split_out
Use external ldap auth pacakge
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 3851b35889..a2866af431 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -61,6 +61,8 @@ class AuthHandler(BaseHandler): for module, config in hs.config.password_providers ] + logger.info("Extra password_providers: %r", self.password_providers) + self.hs = hs # FIXME better possibility to access registrationHandler later? self.device_handler = hs.get_device_handler() |