diff options
author | Hugh Nimmo-Smith <hughns@users.noreply.github.com> | 2023-03-02 10:34:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 10:34:59 +0000 |
commit | 916b8061d20dc0902b7f2d42d994efc20300e9e7 (patch) | |
tree | bf06dc8e7e62246d70ae81879aa19bee173a25bc /synapse/config | |
parent | Remove support for aggregating reactions (#15172) (diff) | |
download | synapse-916b8061d20dc0902b7f2d42d994efc20300e9e7.tar.xz |
Implementation of MSC3967: Don't require UIA for initial upload of cross signing keys (#15077)
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index bc38fae0b6..7c81f055b6 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -194,3 +194,6 @@ class ExperimentalConfig(Config): self.msc3966_exact_event_property_contains = experimental.get( "msc3966_exact_event_property_contains", False ) + + # MSC3967: Do not require UIA when first uploading cross signing keys + self.msc3967_enabled = experimental.get("msc3967_enabled", False) |