diff options
author | reivilibre <oliverw@matrix.org> | 2021-11-04 17:10:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 17:10:11 +0000 |
commit | 499c44d69685c1c1e347ff252ad08f5dfe089a83 (patch) | |
tree | 8cf93492811fb2e7b3944e61b882d71403d713c2 /docs | |
parent | Additional test for `cachedList` (#11246) (diff) | |
download | synapse-499c44d69685c1c1e347ff252ad08f5dfe089a83.tar.xz |
Make minor correction to type of auth_checkers callbacks (#11253)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/modules/password_auth_provider_callbacks.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/password_auth_provider_callbacks.md b/docs/modules/password_auth_provider_callbacks.md index 0de60b128a..e53abf6409 100644 --- a/docs/modules/password_auth_provider_callbacks.md +++ b/docs/modules/password_auth_provider_callbacks.md @@ -11,7 +11,7 @@ registered by using the Module API's `register_password_auth_provider_callbacks` _First introduced in Synapse v1.46.0_ ```python - auth_checkers: Dict[Tuple[str,Tuple], Callable] +auth_checkers: Dict[Tuple[str, Tuple[str, ...]], Callable] ``` A dict mapping from tuples of a login type identifier (such as `m.login.password`) and a |