From 4df8da549e8367e02ca12f9fc6e0db2bc6e6ee71 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 24 Jan 2026 17:51:35 +0100 Subject: [PATCH] fix(auth): scope query binding Resolves https://github.com/go-vikunja/vikunja/issues/2146 --- pkg/modules/auth/openid/openid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/auth/openid/openid.go b/pkg/modules/auth/openid/openid.go index 96f287d36..00717f9ff 100644 --- a/pkg/modules/auth/openid/openid.go +++ b/pkg/modules/auth/openid/openid.go @@ -45,7 +45,7 @@ import ( // Callback contains the callback after an auth request was made and redirected type Callback struct { Code string `query:"code" json:"code"` - Scope string `query:"scop" json:"scope"` + Scope string `query:"scope" json:"scope"` RedirectURL string `json:"redirect_url"` }