fix: support POST for OIDC userinfo endpoint

This commit is contained in:
Elias Schneider
2025-03-01 20:42:00 +01:00
parent 4bafee4f58
commit 1652cc65f3
2 changed files with 14 additions and 1 deletions

View File

@@ -94,6 +94,11 @@ type NotSignedInError struct{}
func (e *NotSignedInError) Error() string { return "You are not signed in" }
func (e *NotSignedInError) HttpStatusCode() int { return http.StatusUnauthorized }
type MissingAccessToken struct{}
func (e *MissingAccessToken) Error() string { return "Missing access token" }
func (e *MissingAccessToken) HttpStatusCode() int { return http.StatusUnauthorized }
type MissingPermissionError struct{}
func (e *MissingPermissionError) Error() string {