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 a10a41f639
commit c5d7988ad0

View File

@@ -62,3 +62,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
)