fix(openid): lint

This commit is contained in:
kolaente 2024-12-11 17:10:41 +01:00
parent 7ac2c42e4d
commit c9a68d3a63
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 3 deletions

View File

@ -120,9 +120,11 @@ func getProviderFromMap(pi map[string]interface{}, key string) (provider *Provid
}
allKeys := append(
requiredKeys,
"logouturl",
"scope",
[]string{
"logouturl",
"scope",
},
requiredKeys...,
)
for _, configKey := range allKeys {