diff options
author | Tulir Asokan <tulir@maunium.net> | 2023-03-16 16:00:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 15:00:03 +0100 |
commit | b0a0fb5c97449720c679045f1bb5a5f393b1c267 (patch) | |
tree | 01ff31ed09ba5a9538cd823d21b88723ab347080 /synapse/rest/__init__.py | |
parent | Refresh remote profiles that have been marked as stale, in order to fill the ... (diff) | |
download | synapse-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__.py | 2 |
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: |