Moved TELEM_URL from system config to user config

This commit is contained in:
2025-11-17 12:06:17 -05:00
parent 89654d3a8c
commit 2f41b33dd4
+1 -1
View File
@@ -26,7 +26,6 @@ logger = logging.getLogger(__name__)
# System config keys - these are immutable and come from system_config.json (bundled in exe)
SYSTEM_CONFIG_KEYS = [
"URL",
"TELEM_URL",
"APPNAME",
"LOG_LEVEL",
"BAD_PATH_PARTS",
@@ -41,6 +40,7 @@ SYSTEM_CONFIG_KEYS = [
# User config keys - these can be changed by the end user
USER_CONFIG_KEYS = [
"TELEMETRY", # User opt-in/out for telemetry
"TELEM_URL",
"TEXTUAL_THEME", # UI theme preference
"EXTRAS", # Feature flags
]