diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2023-05-03 12:27:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 12:27:33 +0100 |
commit | 04e79e6a185f466c9a2c8d79f6c9de7f42efc6f7 (patch) | |
tree | bab1b9e35eb480c7b33a2f3d886cc42db4c420a4 /docs/usage | |
parent | Remove references to supporting per-user flag for msc2654 (#15522) (diff) | |
download | synapse-04e79e6a185f466c9a2c8d79f6c9de7f42efc6f7.tar.xz |
Add config option to forget rooms automatically when users leave them (#15224)
This is largely based off the stats and user directory updater code. Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'docs/usage')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index b6516191e8..14c21f73fe 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -3699,6 +3699,16 @@ default_power_level_content_override: trusted_private_chat: null public_chat: null ``` +--- +### `forget_rooms_on_leave` + +Set to true to automatically forget rooms for users when they leave them, either +normally or via a kick or ban. Defaults to false. + +Example configuration: +```yaml +forget_rooms_on_leave: false +``` --- ## Opentracing |