summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-12-10 14:47:54 +0000
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-12-13 16:49:43 +0000
commitc5e072fad5e6eed570f03370aee06041abf4f274 (patch)
tree0712de9390310f0ce18e0a6a93b221f98282b27f /synapse
parentFix up some tests (diff)
downloadsynapse-c5e072fad5e6eed570f03370aee06041abf4f274.tar.xz
Add feature flag for experimental MSC3202 transaction extensions
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/experimental.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index e481fc16b6..9bc205338d 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -57,3 +57,9 @@ class ExperimentalConfig(Config):
         self.msc2409_to_device_messages_enabled: bool = experimental.get(
             "msc2409_to_device_messages_enabled", False
         )
+
+        # Portion of MSC3202 related to transaction extensions:
+        # sending one-time key counts and fallback key usage to application services.
+        self.msc3202_transaction_extensions: bool = experimental.get(
+            "msc3202_transaction_extensions", False
+        )