diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-12 06:26:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 06:26:39 -0400 |
commit | 09be8ab5f9d54fa1a577d8b0028abf8acc28f30d (patch) | |
tree | 49165db5f0c27ca1586507854904df34e3a999ee /synapse/config | |
parent | Use minimal Rust installation in docker images and CI (#14141) (diff) | |
download | synapse-09be8ab5f9d54fa1a577d8b0028abf8acc28f30d.tar.xz |
Remove the experimental implementation of MSC3772. (#14094)
MSC3772 has been abandoned.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index e00cb7096c..f44655516e 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -95,8 +95,6 @@ class ExperimentalConfig(Config): # MSC2815 (allow room moderators to view redacted event content) self.msc2815_enabled: bool = experimental.get("msc2815_enabled", False) - # MSC3772: A push rule for mutual relations. - self.msc3772_enabled: bool = experimental.get("msc3772_enabled", False) # MSC3773: Thread notifications self.msc3773_enabled: bool = experimental.get("msc3773_enabled", False) |