summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2023-03-16 16:00:03 +0200
committerGitHub <noreply@github.com>2023-03-16 15:00:03 +0100
commitb0a0fb5c97449720c679045f1bb5a5f393b1c267 (patch)
tree01ff31ed09ba5a9538cd823d21b88723ab347080 /synapse/config
parentRefresh remote profiles that have been marked as stale, in order to fill the ... (diff)
downloadsynapse-b0a0fb5c97449720c679045f1bb5a5f393b1c267.tar.xz
Implement MSC2659: application service ping endpoint (#15249)
Signed-off-by: Tulir Asokan <tulir@maunium.net>
Diffstat (limited to 'synapse/config')
-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 7e05f78f70..99dcd27c74 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -178,3 +178,6 @@ class ExperimentalConfig(Config):
 
         # MSC3967: Do not require UIA when first uploading cross signing keys
         self.msc3967_enabled = experimental.get("msc3967_enabled", False)
+
+        # MSC2659: Application service ping endpoint
+        self.msc2659_enabled = experimental.get("msc2659_enabled", False)