diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2023-01-01 03:40:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-01 03:40:46 +0000 |
commit | c4456114e1a5471bb61cb45605e782263dc8233c (patch) | |
tree | add9465775182b17448f7cfad588604eb3671ac2 /synapse/config | |
parent | Actually use the picture_claim as configured in OIDC config. (#14751) (diff) | |
download | synapse-c4456114e1a5471bb61cb45605e782263dc8233c.tar.xz |
Add experimental support for MSC3391: deleting account data (#14714)
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 573fa0386f..0f3870bfe1 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -136,3 +136,6 @@ class ExperimentalConfig(Config): # Enable room version (and thus applicable push rules from MSC3931/3932) version_id = RoomVersions.MSC1767v10.identifier KNOWN_ROOM_VERSIONS[version_id] = RoomVersions.MSC1767v10 + + # MSC3391: Removing account data. + self.msc3391_enabled = experimental.get("msc3391_enabled", False) |