fix: consent screen skip status should get checked after auth (#1099)

This commit is contained in:
Stavros
2026-08-30 20:09:41 +03:00
committed by GitHub
parent 4bb766997b
commit 88901d342f
6 changed files with 436 additions and 106 deletions
+11
View File
@@ -53,6 +53,17 @@ const (
OIDCPromptNone OIDCPrompt = "none"
)
func (p OIDCPrompt) String() string {
switch p {
case OIDCPromptLogin:
return "login"
case OIDCPromptNone:
return "none"
default:
return "login"
}
}
var SupportedPrompts = []string{string(OIDCPromptLogin), string(OIDCPromptNone)}
// This is not spec-compliant, the ID token SHOULD NOT contain user info claims but,