diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-10-20 13:04:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 11:04:27 +0000 |
commit | 78d5896d19692e4b6cdbf09f807915e6b0929ce5 (patch) | |
tree | 42b2441cb20c2d7e5262c2e6532607ef30466963 /docs/modules/account_validity_callbacks.md | |
parent | Add missing type hints to event fetching. (#11121) (diff) | |
download | synapse-78d5896d19692e4b6cdbf09f807915e6b0929ce5.tar.xz |
Document the version of Synapse each module callback was introduced in (#11132)
* Mention callbacks introduced in v1.37.0 According to the documentation introduced in https://github.com/matrix-org/synapse/pull/10062 * Mention callbacks introduced in v1.39.0 According to https://github.com/matrix-org/synapse/pull/10386 and https://github.com/matrix-org/synapse/pull/9884 * Mention callbacks introduced in v1.42.0 According to https://github.com/matrix-org/synapse/pull/10524 * Mention callbacks introduced in v1.44.0 and v1.45.0 As per https://github.com/matrix-org/synapse/pull/10898, https://github.com/matrix-org/synapse/pull/10910 and https://github.com/matrix-org/synapse/pull/10894 * Mention callbacks introduced in v1.46.0 According to https://github.com/matrix-org/synapse/pull/10548
Diffstat (limited to 'docs/modules/account_validity_callbacks.md')
-rw-r--r-- | docs/modules/account_validity_callbacks.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/modules/account_validity_callbacks.md b/docs/modules/account_validity_callbacks.md index 836bda70bf..3cd0e72198 100644 --- a/docs/modules/account_validity_callbacks.md +++ b/docs/modules/account_validity_callbacks.md @@ -9,6 +9,8 @@ The available account validity callbacks are: ### `is_user_expired` +_First introduced in Synapse v1.39.0_ + ```python async def is_user_expired(user: str) -> Optional[bool] ``` @@ -29,6 +31,8 @@ any of the subsequent implementations of this callback. ### `on_user_registration` +_First introduced in Synapse v1.39.0_ + ```python async def on_user_registration(user: str) -> None ``` |