summaryrefslogtreecommitdiff
path: root/internal/handlers/types.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2025-02-22 22:03:33 +1100
committerGitHub <noreply@github.com>2025-02-22 11:03:33 +0000
commite7d387ed9169dcdb4e8171db8ed20ec6ef376e0a (patch)
tree96bfca916ad1e25c7f960e98cd7e3d0af8f3fdd3 /internal/handlers/types.go
parent111344eaea4fd0c32ce58a181b94414ae639fe2b (diff)
feat(oidc): rfc8628 oauth 2.0 device code grant (#8082)
This implements RFC8628 OAuth 2.0 Device Authorization Grant and the accompanying OAuth 2.0 Device Code Flow. Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/handlers/types.go')
-rw-r--r--internal/handlers/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/types.go b/internal/handlers/types.go
index 377b158b9..3e140acb6 100644
--- a/internal/handlers/types.go
+++ b/internal/handlers/types.go
@@ -199,4 +199,4 @@ type handlerAuthorizationConsent func(
ctx *middlewares.AutheliaCtx, issuer *url.URL, client oidc.Client,
userSession session.UserSession, subject uuid.UUID,
rw http.ResponseWriter, r *http.Request,
- requester oauthelia2.AuthorizeRequester) (consent *model.OAuth2ConsentSession, handled bool)
+ requester oauthelia2.Requester) (consent *model.OAuth2ConsentSession, handled bool)