summary refs log tree commit diff
path: root/synapse/rest/__init__.py
diff options
context:
space:
mode:
authorHugh Nimmo-Smith <hughns@users.noreply.github.com>2022-09-21 16:12:29 +0100
committerGitHub <noreply@github.com>2022-09-21 15:12:29 +0000
commit0fd2f2d46064efd37284a36d5b478815d69ddd96 (patch)
treea3b9fca597bc47e7db3226dd8d1e13c84e770e69 /synapse/rest/__init__.py
parentAdd `worker_main_http_uri` to the contrib bash script (#13772) (diff)
downloadsynapse-0fd2f2d46064efd37284a36d5b478815d69ddd96.tar.xz
Implementation of MSC3882 login token request (#13722)
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 b712215112..9a2ab99ede 100644
--- a/synapse/rest/__init__.py
+++ b/synapse/rest/__init__.py
@@ -30,6 +30,7 @@ from synapse.rest.client import (
     keys,
     knock,
     login as v1_login,
+    login_token_request,
     logout,
     mutual_rooms,
     notifications,
@@ -130,3 +131,4 @@ class ClientRestResource(JsonResource):
 
         # unstable
         mutual_rooms.register_servlets(hs, client_resource)
+        login_token_request.register_servlets(hs, client_resource)