summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorHugh Nimmo-Smith <hughns@users.noreply.github.com>2022-09-29 12:22:27 +0100
committerGitHub <noreply@github.com>2022-09-29 07:22:27 -0400
commite5fdf16d4680b00ca8120ddb697bd14ab89fdf0c (patch)
tree5ce71ec840a721ffce711e9fce1a5b7f0425f258 /synapse/rest
parentClarify that a method returns only unthreaded receipts. (#13937) (diff)
downloadsynapse-e5fdf16d4680b00ca8120ddb697bd14ab89fdf0c.tar.xz
Expose MSC3882 only be under an unstable endpoint. (#13868)
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/login_token_request.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/rest/client/login_token_request.py b/synapse/rest/client/login_token_request.py
index ca5c54bf17..277b20fb63 100644
--- a/synapse/rest/client/login_token_request.py
+++ b/synapse/rest/client/login_token_request.py
@@ -47,7 +47,9 @@ class LoginTokenRequestServlet(RestServlet):
     }
     """
 
-    PATTERNS = client_patterns("/login/token$")
+    PATTERNS = client_patterns(
+        "/org.matrix.msc3882/login/token$", releases=[], v1=False, unstable=True
+    )
 
     def __init__(self, hs: "HomeServer"):
         super().__init__()