diff options
author | Shay <hillerys@element.io> | 2024-06-24 06:21:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 14:21:22 +0100 |
commit | 7a11c0ac4fd3bab42d6edb17593c9d7ed8371001 (patch) | |
tree | 379871363c060013772bb212ed24000ad06b958a /synapse/config/experimental.py | |
parent | Reduce device lists replication traffic. (#17333) (diff) | |
download | synapse-7a11c0ac4fd3bab42d6edb17593c9d7ed8371001.tar.xz |
Add support for MSC3823 - Account Suspension Part 2 (#17255)
Diffstat (limited to 'synapse/config/experimental.py')
-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 23e96da6a3..1b72727b75 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -433,6 +433,10 @@ class ExperimentalConfig(Config): ("experimental", "msc4108_delegation_endpoint"), ) + self.msc3823_account_suspension = experimental.get( + "msc3823_account_suspension", False + ) + self.msc3916_authenticated_media_enabled = experimental.get( "msc3916_authenticated_media_enabled", False ) |