diff options
author | Will Hunt <willh@matrix.org> | 2021-07-27 14:20:08 +0100 |
---|---|---|
committer | Will Hunt <willh@matrix.org> | 2021-07-27 14:20:08 +0100 |
commit | 64970400ae6fe346941d4fc721dd42537e93ccbe (patch) | |
tree | 34f3284e8613ae6167314ab18f529cfe6c75acd2 /synapse/config/experimental.py | |
parent | Fix merge fail (diff) | |
parent | Use new go test running syntax for complement. (#10488) (diff) | |
download | synapse-64970400ae6fe346941d4fc721dd42537e93ccbe.tar.xz |
Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-cache
Diffstat (limited to 'synapse/config/experimental.py')
-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 e25ccba9ac..040c4504d8 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -32,3 +32,6 @@ class ExperimentalConfig(Config): # MSC2716 (backfill existing history) self.msc2716_enabled: bool = experimental.get("msc2716_enabled", False) + + # MSC3244 (room version capabilities) + self.msc3244_enabled: bool = experimental.get("msc3244_enabled", False) |