mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-15 06:05:30 -04:00
Update MSC2918 refresh token support to confirm with the latest revision: accept the refresh_tokens
parameter in the request body rather than in the URL parameters. (#11430)
This commit is contained in:
parent
ffd858aa68
commit
1b6691dce4
4 changed files with 58 additions and 22 deletions
|
@ -41,7 +41,6 @@ from synapse.http.server import HttpServer, finish_request, respond_with_html
|
|||
from synapse.http.servlet import (
|
||||
RestServlet,
|
||||
assert_params_in_dict,
|
||||
parse_boolean,
|
||||
parse_json_object_from_request,
|
||||
parse_string,
|
||||
)
|
||||
|
@ -449,9 +448,13 @@ class RegisterRestServlet(RestServlet):
|
|||
if self._msc2918_enabled:
|
||||
# Check if this registration should also issue a refresh token, as
|
||||
# per MSC2918
|
||||
should_issue_refresh_token = parse_boolean(
|
||||
request, name="org.matrix.msc2918.refresh_token", default=False
|
||||
should_issue_refresh_token = body.get(
|
||||
"org.matrix.msc2918.refresh_token", False
|
||||
)
|
||||
if not isinstance(should_issue_refresh_token, bool):
|
||||
raise SynapseError(
|
||||
400, "`org.matrix.msc2918.refresh_token` should be true or false."
|
||||
)
|
||||
else:
|
||||
should_issue_refresh_token = False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue