summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-08-23 13:22:34 -0400
committerGitHub <noreply@github.com>2023-08-23 13:22:34 -0400
commit33fa82a34cb0001787889be88c3817688ce2f76d (patch)
tree66b13fa84803f7ece3587a2a1000dd4ea384f8b1 /synapse/config/experimental.py
parentFix rare deadlock when using read/write locks (#16169) (diff)
downloadsynapse-33fa82a34cb0001787889be88c3817688ce2f76d.tar.xz
Stabilize support for MSC3958 (suppress notifications from edits). (#16113)
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 277ea4675b..84d6dd13af 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -383,11 +383,6 @@ class ExperimentalConfig(Config):
         # MSC3391: Removing account data.
         self.msc3391_enabled = experimental.get("msc3391_enabled", False)
 
-        # MSC3959: Do not generate notifications for edits.
-        self.msc3958_supress_edit_notifs = experimental.get(
-            "msc3958_supress_edit_notifs", False
-        )
-
         # MSC3967: Do not require UIA when first uploading cross signing keys
         self.msc3967_enabled = experimental.get("msc3967_enabled", False)