summary refs log tree commit diff
path: root/synapse/rest/__init__.py
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/rest/__init__.py
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/rest/__init__.py')
-rw-r--r--synapse/rest/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/rest/__init__.py b/synapse/rest/__init__.py

index 2e19e055d3..55b448adfd 100644 --- a/synapse/rest/__init__.py +++ b/synapse/rest/__init__.py
@@ -20,6 +20,7 @@ from synapse.rest.client import ( account, account_data, account_validity, + appservice_ping, auth, capabilities, devices, @@ -140,6 +141,7 @@ class ClientRestResource(JsonResource): if is_main_process: password_policy.register_servlets(hs, client_resource) knock.register_servlets(hs, client_resource) + appservice_ping.register_servlets(hs, client_resource) # moving to /_synapse/admin if is_main_process: