From f882fe9ec8cce4b12ebbdc936a0040463347321c Mon Sep 17 00:00:00 2001 From: Stavros Date: Mon, 2 Mar 2026 19:46:17 +0200 Subject: [PATCH] chore: update config description --- internal/config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 46a81c7..4633953 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -93,7 +93,7 @@ type Config struct { } type DatabaseConfig struct { - Path string `description:"The path to the database file." yaml:"path"` + Path string `description:"The path to the database, including file name." yaml:"path"` } type AnalyticsConfig struct { @@ -135,8 +135,8 @@ type OAuthConfig struct { } type OIDCConfig struct { - PrivateKeyPath string `description:"Path to the private key file." yaml:"privateKeyPath"` - PublicKeyPath string `description:"Path to the public key file." yaml:"publicKeyPath"` + PrivateKeyPath string `description:"Path to the private key file, including file name." yaml:"privateKeyPath"` + PublicKeyPath string `description:"Path to the public key file, including file name." yaml:"publicKeyPath"` Clients map[string]OIDCClientConfig `description:"OIDC clients configuration." yaml:"clients"` }