OAuth: persisting the id token (#42938)

* OAuth: persisting the id token

* OAuth: verifies that the idtoken gets persistet in the database
This commit is contained in:
Leonard Gram
2021-12-14 15:22:10 +01:00
committed by GitHub
parent 4a3961400a
commit 5d18834deb
5 changed files with 39 additions and 3 deletions

View File

@ -19,6 +19,7 @@ type UserAuth struct {
Created time.Time
OAuthAccessToken string
OAuthRefreshToken string
OAuthIdToken string
OAuthTokenType string
OAuthExpiry time.Time
}