diff options
author | David Baker <dbkr@users.noreply.github.com> | 2017-11-02 15:15:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 15:15:30 +0000 |
commit | 6b6f03ae055caf3cdac86960b1423b7603d3258c (patch) | |
tree | 18169410dc7490877828cade3ba309c1382b90f6 /docs | |
parent | Merge pull request #2625 from matrix-org/rav/named_resource_refactor (diff) | |
parent | Factor _AccountHandler proxy out to ModuleApi (diff) | |
download | synapse-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.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 |