summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2023-04-26 11:38:39 +0100
committerDavid Robertson <davidr@element.io>2023-04-26 11:38:39 +0100
commitd1b33ae118080c541ed5243c34d089ac1b64aba2 (patch)
tree4e6d0e15c3a2daa78216df31d1802ffcc8ca8b9a /synapse/config/experimental.py
parentMerge branch 'release-v1.82' into matrix-org-hotfixes (diff)
parentUpdate the `check_schema_delta` script to account for when the schema version... (diff)
downloadsynapse-d1b33ae118080c541ed5243c34d089ac1b64aba2.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/config/experimental.py')
-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 7687c80ea0..6599679731 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py
@@ -191,3 +191,6 @@ class ExperimentalConfig(Config): # MSC2659: Application service ping endpoint self.msc2659_enabled = experimental.get("msc2659_enabled", False) + + # MSC3970: Scope transaction IDs to devices + self.msc3970_enabled = experimental.get("msc3970_enabled", False)