diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-11-02 14:13:25 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-11-02 14:36:11 +0000 |
commit | 1189be43a2479f5adf034613e8d10e3f4f452eb9 (patch) | |
tree | 1003b61127f88dbcd0b1dab0fb2c563589287539 /docs | |
parent | Merge pull request #2624 from matrix-org/rav/password_provider_notify_logout (diff) | |
download | synapse-1189be43a2479f5adf034613e8d10e3f4f452eb9.tar.xz |
Factor _AccountHandler proxy out to ModuleApi
We're going to need to use this from places that aren't password auth, so let's move it to a proper class.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/password_auth_providers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/password_auth_providers.rst b/docs/password_auth_providers.rst index 2842d187e5..d8a7b61cdc 100644 --- a/docs/password_auth_providers.rst +++ b/docs/password_auth_providers.rst @@ -27,7 +27,7 @@ Password auth provider classes must provide the following methods: *class* ``SomeProvider``\(*config*, *account_handler*) The constructor is passed the config object returned by ``parse_config``, - and a ``synapse.handlers.auth._AccountHandler`` object which allows the + and a ``synapse.module_api.ModuleApi`` object which allows the password provider to check if accounts exist and/or create new ones. Optional methods |