Skip to content
Snippets Groups Projects
Unverified Commit 4765f0cf authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Add m.id_access_token flag (#5930)

Adds a flag to `/versions`' `unstable_features` section indicating that this Synapse understands what an `id_access_token` is, as per https://github.com/matrix-org/synapse/issues/5927#issuecomment-523566043

Fixes #5927
parent d19505a8
No related branches found
No related tags found
No related merge requests found
Add temporary flag to /versions in unstable_features to indicate this Synapse supports receiving id_access_token parameters on calls to identity server-proxying endpoints.
\ No newline at end of file
...@@ -44,7 +44,12 @@ class VersionsRestServlet(RestServlet): ...@@ -44,7 +44,12 @@ class VersionsRestServlet(RestServlet):
"r0.5.0", "r0.5.0",
], ],
# as per MSC1497: # as per MSC1497:
"unstable_features": {"m.lazy_load_members": True}, "unstable_features": {
"m.lazy_load_members": True,
# as per https://github.com/matrix-org/synapse/issues/5927
# to be removed in r0.6.0
"m.id_access_token": True,
},
}, },
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment