refactor: rename generic user info url to generic user url

This commit is contained in:
Stavros
2025-01-24 19:41:44 +02:00
parent f61b6dbad4
commit b87cb54d91
3 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ type Config struct {
GenericScopes string `mapstructure:"generic-scopes"`
GenericAuthURL string `mapstructure:"generic-auth-url"`
GenericTokenURL string `mapstructure:"generic-token-url"`
GenericUserInfoURL string `mapstructure:"generic-user-info-url"`
GenericUserURL string `mapstructure:"generic-user-info-url"`
DisableContinue bool `mapstructure:"disable-continue"`
}
@@ -65,7 +65,7 @@ type OAuthConfig struct {
GenericScopes string
GenericAuthURL string
GenericTokenURL string
GenericUserInfoURL string
GenericUserURL string
AppURL string
}