summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorMichael Telatynski <7t3chguy@gmail.com>2021-07-20 12:59:23 +0100
committerGitHub <noreply@github.com>2021-07-20 12:59:23 +0100
commit69226c1ab4e88d1f104ad8aaa13fb9dd0ff5dbb2 (patch)
treec2de39f8a5110a4eea70b6a28d198fd86316011f /synapse/config
parentRevert "Fix dropping locks on shut down" (diff)
downloadsynapse-69226c1ab4e88d1f104ad8aaa13fb9dd0ff5dbb2.tar.xz
MSC3244 room capabilities implementation (#10283)
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/experimental.py3
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)