From baf47986654277d3cb35a72942c70b59fa989b3c Mon Sep 17 00:00:00 2001 From: Stavros Date: Sat, 7 Feb 2026 12:59:25 +0200 Subject: [PATCH] fix: fix typo in oidc trusted redirect uris config --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 700e95c..7e40e45 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -138,7 +138,7 @@ type OIDCClientConfig struct { ClientID string `description:"OIDC client ID." yaml:"clientId"` ClientSecret string `description:"OIDC client secret." yaml:"clientSecret"` ClientSecretFile string `description:"Path to the file containing the OIDC client secret." yaml:"clientSecretFile"` - TrustedRedirectURIs []string `description:"List of trusted redirect URLs." yaml:"trustedRedirectUrls"` + TrustedRedirectURIs []string `description:"List of trusted redirect URIs." yaml:"trustedRedirectUris"` Name string `description:"Client name in UI." yaml:"name"` }