summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorDavid Baker <dbkr@users.noreply.github.com>2017-11-02 15:15:30 +0000
committerGitHub <noreply@github.com>2017-11-02 15:15:30 +0000
commit6b6f03ae055caf3cdac86960b1423b7603d3258c (patch)
tree18169410dc7490877828cade3ba309c1382b90f6 /docs
parentMerge pull request #2625 from matrix-org/rav/named_resource_refactor (diff)
parentFactor _AccountHandler proxy out to ModuleApi (diff)
downloadsynapse-6b6f03ae055caf3cdac86960b1423b7603d3258c.tar.xz
Merge pull request #2626 from matrix-org/rav/refactor_module_api
Factor _AccountHandler proxy out to ModuleApi
Diffstat (limited to 'docs')
-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