summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2024-06-14 11:14:56 +0100
committerGitHub <noreply@github.com>2024-06-14 11:14:56 +0100
commit3aae60f17b97078b2fd4bde64be063f9d34c6352 (patch)
treea033fd768eeed24256c4ab6328286423900d593a /synapse/config/experimental.py
parentInclude user membership on events (#17282) (diff)
downloadsynapse-3aae60f17b97078b2fd4bde64be063f9d34c6352.tar.xz
Enable cross-signing key upload without UIA (#17284)
Per MSC3967, which is now stable, we should not require UIA when
uploading cross-signing keys for the first time.

Fixes: #17227
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py

index d9ad5fc32d..24546171e5 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py
@@ -393,9 +393,6 @@ class ExperimentalConfig(Config): # MSC3391: Removing account data. self.msc3391_enabled = experimental.get("msc3391_enabled", False) - # MSC3967: Do not require UIA when first uploading cross signing keys - self.msc3967_enabled = experimental.get("msc3967_enabled", False) - # MSC3861: Matrix architecture change to delegate authentication via OIDC try: self.msc3861 = MSC3861(**experimental.get("msc3861", {}))