From a6aa97bcfaa9ffc0c0240f810a361a0fb78f9182 Mon Sep 17 00:00:00 2001 From: Stavros Date: Sat, 24 May 2025 16:02:40 +0300 Subject: [PATCH] chore: remove url requirement in background image --- internal/types/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/config.go b/internal/types/config.go index 2dd8ba9..fdf7bf8 100644 --- a/internal/types/config.go +++ b/internal/types/config.go @@ -34,7 +34,7 @@ type Config struct { LoginTimeout int `mapstructure:"login-timeout"` LoginMaxRetries int `mapstructure:"login-max-retries"` FogotPasswordMessage string `mapstructure:"forgot-password-message" validate:"required"` - BackgroundImage string `mapstructure:"background-image" validate:"required,url"` + BackgroundImage string `mapstructure:"background-image" validate:"required"` } // Server configuration