From dcd816b6c63a02351cb86ee108057c33fe60c4a6 Mon Sep 17 00:00:00 2001 From: Stavros Date: Fri, 31 Jan 2025 17:28:59 +0200 Subject: [PATCH] fix: parse generic oauth provider config correctly --- internal/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/types.go b/internal/types/types.go index bbc0542..a6f9b4a 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -39,7 +39,7 @@ type Config struct { GenericScopes string `mapstructure:"generic-scopes"` GenericAuthURL string `mapstructure:"generic-auth-url"` GenericTokenURL string `mapstructure:"generic-token-url"` - GenericUserURL string `mapstructure:"generic-user-info-url"` + GenericUserURL string `mapstructure:"generic-user-url"` DisableContinue bool `mapstructure:"disable-continue"` OAuthWhitelist string `mapstructure:"oauth-whitelist"` CookieExpiry int `mapstructure:"cookie-expiry"`