From 33353ef21e9c4b178f7c001477b0a21560d0a1a1 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Mon, 16 Jun 2025 13:14:28 -0700 Subject: [PATCH] added back online support (#1764) --- config/configStruct.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/configStruct.go b/config/configStruct.go index 1d339c816..d10db83c6 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -174,7 +174,7 @@ type ConfigStruct struct { CloudLicenseEnabled bool `yaml:"cloudLicenseEnabled" json:"cloudLicenseEnabled" default:"true"` AiAssistantEnabled bool `yaml:"aiAssistantEnabled" json:"aiAssistantEnabled" default:"true"` DemoModeEnabled bool `yaml:"demoModeEnabled" json:"demoModeEnabled" default:"false"` - SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"false"` + SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"true"` InternetConnectivity bool `yaml:"internetConnectivity" json:"internetConnectivity" default:"true"` Scripting configStructs.ScriptingConfig `yaml:"scripting" json:"scripting"` Manifests ManifestsConfig `yaml:"manifests,omitempty" json:"manifests,omitempty"`