From 692de314b90ba360c474f122c2c2046928de912d Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 14 Aug 2025 16:02:01 +0200 Subject: [PATCH] feat: add defaultAppId option for the web config.json --- services/web/pkg/config/options.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/pkg/config/options.go b/services/web/pkg/config/options.go index 48897aa641..1b29ba4763 100644 --- a/services/web/pkg/config/options.go +++ b/services/web/pkg/config/options.go @@ -18,6 +18,7 @@ type Options struct { Embed *Embed `json:"embed,omitempty" yaml:"embed"` UserListRequiresFilter bool `json:"userListRequiresFilter,omitempty" yaml:"userListRequiresFilter" env:"WEB_OPTION_USER_LIST_REQUIRES_FILTER" desc:"Defines whether one or more filters must be set in order to list users in the Web admin settings. Set this option to 'true' if running in an environment with a lot of users and listing all users could slow down performance. Defaults to 'false'." introductionVersion:"1.0.0"` ConcurrentRequests *ConcurrentRequests `json:"concurrentRequests,omitempty" yaml:"concurrentRequests"` + DefaultAppID string `json:"defaultAppId,omitempty" yaml:"defaultAppId" env:"WEB_OPTION_DEFAULT_APP_ID" desc:"Defines the entrypoint for the web ui." introductionVersion:"%%NEXT%%"` } // AccountEditLink are the AccountEditLink options