This commit is contained in:
minami.yoshihiko 2025-02-15 18:15:51 +09:00 committed by nannany
parent 32ff570f7c
commit 59bd5643e6
2 changed files with 37 additions and 0 deletions

View file

@ -164,6 +164,15 @@ func authRequestToInternal(authReq *oidc.AuthRequest, userID string) *AuthReques
}
}
type AuthRequestWithSessionState struct {
*AuthRequest
SessionState string
}
func (a *AuthRequestWithSessionState) GetSessionState() string {
return a.SessionState
}
type OIDCCodeChallenge struct {
Challenge string
Method string