diff options
author | Tulir Asokan <tulir@maunium.net> | 2022-04-20 14:57:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 12:57:39 +0100 |
commit | 4bc8cb4669ddeb719a3a6de39b093fc3be8db6fe (patch) | |
tree | 4a1c11e3f5f5bf463a5c5e9cfebf2da4c4ad55ab /synapse/config | |
parent | Add CI job to act as a canary for testing against latest dependencies (#12472) (diff) | |
download | synapse-4bc8cb4669ddeb719a3a6de39b093fc3be8db6fe.tar.xz |
Implement MSC2815: allow room moderators to view redacted event content (#12427)
Implements matrix-org/matrix-spec-proposals#2815 Signed-off-by: Tulir Asokan <tulir@maunium.net>
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 979059e723..421ed7481b 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -78,3 +78,6 @@ class ExperimentalConfig(Config): # MSC2654: Unread counts self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False) + + # MSC2815 (allow room moderators to view redacted event content) + self.msc2815_enabled: bool = experimental.get("msc2815_enabled", False) |