diff options
author | Quentin Gliech <quenting@element.io> | 2021-12-06 18:43:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 12:43:06 -0500 |
commit | a15a893df8428395df7cb95b729431575001c38a (patch) | |
tree | 7572abf2fa680c942dc882cc05e9062bb63b55b8 /synapse/module_api/__init__.py | |
parent | Add admin API to get some information about federation status (#11407) (diff) | |
download | synapse-a15a893df8428395df7cb95b729431575001c38a.tar.xz |
Save the OIDC session ID (sid) with the device on login (#11482)
As a step towards allowing back-channel logout for OIDC.
Diffstat (limited to 'synapse/module_api/__init__.py')
-rw-r--r-- | synapse/module_api/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/module_api/__init__.py b/synapse/module_api/__init__.py index a8154168be..6bfb4b8d1b 100644 --- a/synapse/module_api/__init__.py +++ b/synapse/module_api/__init__.py @@ -626,6 +626,7 @@ class ModuleApi: user_id: str, duration_in_ms: int = (2 * 60 * 1000), auth_provider_id: str = "", + auth_provider_session_id: Optional[str] = None, ) -> str: """Generate a login token suitable for m.login.token authentication @@ -643,6 +644,7 @@ class ModuleApi: return self._hs.get_macaroon_generator().generate_short_term_login_token( user_id, auth_provider_id, + auth_provider_session_id, duration_in_ms, ) |