summary refs log tree commit diff
path: root/docs/password_auth_providers.rst
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-11-02 14:13:25 +0000
committerRichard van der Hoff <richard@matrix.org>2017-11-02 14:36:11 +0000
commit1189be43a2479f5adf034613e8d10e3f4f452eb9 (patch)
tree1003b61127f88dbcd0b1dab0fb2c563589287539 /docs/password_auth_providers.rst
parentMerge pull request #2624 from matrix-org/rav/password_provider_notify_logout (diff)
downloadsynapse-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/password_auth_providers.rst')
-rw-r--r--docs/password_auth_providers.rst2
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