diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2021-11-15 08:50:27 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2021-12-08 18:28:59 +0000 |
commit | 3090000857299bc68bb33902dcd40cf125c936dc (patch) | |
tree | d21dc52059e7c7662998fc4a988c1ea434a637c4 | |
parent | Fix calls to create_appservice_txn in tests (diff) | |
download | synapse-3090000857299bc68bb33902dcd40cf125c936dc.tar.xz |
Add an experimental config option for sending device lists to AS's
-rw-r--r-- | synapse/config/experimental.py | 4 |
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) |