summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorTravis Ralston <travisr@matrix.org>2023-12-04 04:36:12 -0700
committerGitHub <noreply@github.com>2023-12-04 11:36:12 +0000
commitd6e194b2bc1b71c04d55617359b43f4dde5bc593 (patch)
tree0e1aab46285d27097e1441e4e739443818a4d6d0 /synapse/config
parentBump idna from 3.4 to 3.6 (#16720) (diff)
downloadsynapse-d6e194b2bc1b71c04d55617359b43f4dde5bc593.tar.xz
Implement MSC4069: Inhibit profile propagation (#16636)
MSC: https://github.com/matrix-org/matrix-spec-proposals/pull/4069
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/experimental.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 9f830e7094..6b9febe5a7 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -419,3 +419,7 @@ class ExperimentalConfig(Config):
         self.msc4028_push_encrypted_events = experimental.get(
             "msc4028_push_encrypted_events", False
         )
+
+        self.msc4069_profile_inhibit_propagation = experimental.get(
+            "msc4069_profile_inhibit_propagation", False
+        )