From 235726e8a90c4e3174a90b39a023e29cfaf739f6 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 11 Jun 2026 09:52:10 +0200 Subject: [PATCH] feat: add core apps env variable to override the default core apps --- services/web/pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/pkg/config/config.go b/services/web/pkg/config/config.go index aec38353b3..b7279759a5 100644 --- a/services/web/pkg/config/config.go +++ b/services/web/pkg/config/config.go @@ -56,7 +56,7 @@ type WebConfig struct { Server string `json:"server,omitempty" yaml:"server" env:"OC_URL;WEB_UI_CONFIG_SERVER" desc:"URL, where the OpenCloud APIs are reachable for OpenCloud Web." introductionVersion:"1.0.0"` Theme string `json:"theme,omitempty" yaml:"-"` OpenIDConnect OIDC `json:"openIdConnect,omitempty" yaml:"oidc"` - Apps []string `json:"apps" yaml:"apps"` + Apps []string `json:"apps" yaml:"apps" env:"WEB_UI_CORE_APPS" desc:"Allows to override the default list of core apps in OpenCloud Web." introductionVersion:"%%NEXT%%"` Applications []Application `json:"applications,omitempty" yaml:"applications"` ExternalApps []ExternalApp `json:"external_apps,omitempty" yaml:"external_apps"` Options Options `json:"options,omitempty" yaml:"options"`