summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-11-15 08:50:27 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2021-12-08 18:28:59 +0000
commit3090000857299bc68bb33902dcd40cf125c936dc (patch)
treed21dc52059e7c7662998fc4a988c1ea434a637c4 /synapse
parentFix calls to create_appservice_txn in tests (diff)
downloadsynapse-3090000857299bc68bb33902dcd40cf125c936dc.tar.xz
Add an experimental config option for sending device lists to AS's
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/experimental.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index e481fc16b6..1d02f01759 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -57,3 +57,7 @@ class ExperimentalConfig(Config):
         self.msc2409_to_device_messages_enabled: bool = experimental.get(
             "msc2409_to_device_messages_enabled", False
         )
+
+        # MSC3202 (device list updates and OTK counts / fallback keys to appservices).
+        # Only device lists are supported currently.
+        self.msc3202_enabled: bool = experimental.get("msc3202_enabled", False)