summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2023-01-28 16:30:58 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2023-01-28 16:30:58 +0100
commitf4d0c6a36454574586691980f8508425f467a063 (patch)
tree29f55ee509535853b5862845be9985e0aeee87c1
parentImplement MSC3952: Intentional mentions (#14823) (diff)
downloadsynapse-f4d0c6a36454574586691980f8508425f467a063.tar.xz
Add experimental config option for MSC3480
-rw-r--r--synapse/config/experimental.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index d2d0270ddd..4d49dc4693 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -166,6 +166,9 @@ class ExperimentalConfig(Config):
         # MSC3391: Removing account data.
         self.msc3391_enabled = experimental.get("msc3391_enabled", False)
 
+        # MSC3480: Make device names private.
+        self.msc3480_enabled = experimental.get("msc3480_enabled", False)
+
         # MSC3925: do not replace events with their edits
         self.msc3925_inhibit_edit = experimental.get("msc3925_inhibit_edit", False)