1
0

Add feature flag for experimental MSC3202 transaction extensions

This commit is contained in:
Olivier Wilkinson (reivilibre)
2021-12-10 14:47:54 +00:00
parent cab682fe89
commit c5e072fad5

View File

@@ -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
)