1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-09 08:42:50 +03:00

OIDC: Persist details in session storage, create store (#11302)

* utils to persist clientId and issuer after oidc authentication

* add dep oidc-client-ts

* persist issuer and clientId after successful oidc auth

* add OidcClientStore

* comments and tidy

* format
This commit is contained in:
Kerry
2023-07-21 09:30:19 +12:00
committed by GitHub
parent 882c85a028
commit 0b0d77cbcc
11 changed files with 446 additions and 2 deletions

View File

@@ -132,6 +132,8 @@ describe("OIDC authorization", () => {
accessToken: tokenResponse.access_token,
homeserverUrl,
identityServerUrl,
issuer,
clientId,
});
});
});