diff options
author | Half-Shot <will@half-shot.uk> | 2022-04-03 11:40:18 +0100 |
---|---|---|
committer | Half-Shot <will@half-shot.uk> | 2022-04-03 11:40:18 +0100 |
commit | 6d587670ca2e9ddb60cc0383a60502d67cbb1efc (patch) | |
tree | 70471388681ee9921c268c259c12a0374637c3c1 | |
parent | Add type hints for `tests/unittest.py`. (#12347) (diff) | |
download | synapse-6d587670ca2e9ddb60cc0383a60502d67cbb1efc.tar.xz |
Add new configuration
-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 43db5fcdd9..37dca57f95 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -81,3 +81,6 @@ class ExperimentalConfig(Config): # MSC2654: Unread counts self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False) + + # MSC3759: Leave event metadata for deactivated users + self.msc3759_enabled: bool = experimental.get("msc3759_enabled", False) |