diff options
author | Hugh Nimmo-Smith <hughns@users.noreply.github.com> | 2022-09-29 12:22:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 07:22:27 -0400 |
commit | e5fdf16d4680b00ca8120ddb697bd14ab89fdf0c (patch) | |
tree | 5ce71ec840a721ffce711e9fce1a5b7f0425f258 /synapse/rest | |
parent | Clarify that a method returns only unthreaded receipts. (#13937) (diff) | |
download | synapse-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.py | 4 |
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__() |