From 754ac7a699bee2df23752e6a5d43ee602a6aaf8a Mon Sep 17 00:00:00 2001 From: Thomas Schweiger Date: Fri, 26 Sep 2025 16:22:59 +0200 Subject: [PATCH] fix: fix typo in struct --- services/web/pkg/config/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/pkg/config/options.go b/services/web/pkg/config/options.go index e2415be16..b4e1a9701 100644 --- a/services/web/pkg/config/options.go +++ b/services/web/pkg/config/options.go @@ -2,7 +2,7 @@ package config // Options are the option for the web type Options struct { -^ AccountEditLink *AccountEditLink `json:"accountEditLink,omitempty" yaml:"accountEditLink"` + AccountEditLink *AccountEditLink `json:"accountEditLink,omitempty" yaml:"accountEditLink"` DisableFeedbackLink bool `json:"disableFeedbackLink,omitempty" yaml:"disableFeedbackLink" env:"WEB_OPTION_DISABLE_FEEDBACK_LINK" desc:"Set this option to 'true' to disable the feedback link in the top bar. Keeping it enabled by setting the value to 'false' or with the absence of the option, allows OpenCloud to get feedback from your user base through a dedicated survey website." introductionVersion:"1.0.0"` FeedbackLink *FeedbackLink `json:"feedbackLink,omitempty" yaml:"feedbackLink"` RunningOnEOS bool `json:"runningOnEos,omitempty" yaml:"runningOnEos" env:"WEB_OPTION_RUNNING_ON_EOS" desc:"Set this option to 'true' if running on an EOS storage backend (https://eos-web.web.cern.ch/eos-web/) to enable its specific features. Defaults to 'false'." introductionVersion:"1.0.0"`