diff options
author | Erik Johnston <erik@matrix.org> | 2016-10-03 10:27:10 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-10-03 10:36:40 +0100 |
commit | 850b103b36205d2c90da46a0d7413e6033de4f94 (patch) | |
tree | ba63852ef79b9806eb11a65aca883bb00568b7b7 /tests/utils.py | |
parent | Merge pull request #1153 from matrix-org/erikj/ldap_restructure (diff) | |
download | synapse-850b103b36205d2c90da46a0d7413e6033de4f94.tar.xz |
Implement pluggable password auth
Allows delegating the password auth to an external module. This also moves the LDAP auth to using this system, allowing it to be removed from the synapse tree entirely in the future.
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index 92d470cb48..f74526b6a7 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -52,6 +52,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.server_name = name config.trusted_third_party_id_servers = [] config.room_invite_state_types = [] + config.password_providers = [] config.use_frozen_dicts = True config.database_config = {"name": "sqlite3"} |