fix(auth): scope query binding

Resolves https://github.com/go-vikunja/vikunja/issues/2146
This commit is contained in:
kolaente
2026-01-24 17:51:35 +01:00
parent 731b7c3001
commit 4df8da549e

View File

@@ -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"`
}