fix(KVStore): missing apps.homebox key

This commit is contained in:
jakeaturner 2026-07-21 16:54:10 +00:00
parent b249ef1ed2
commit cf33072dcc
No known key found for this signature in database
GPG Key ID: B1072EBDEECE328D
1 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,27 @@
import { KVStoreKey } from "../types/kv_store.js";
export const SETTINGS_KEYS: KVStoreKey[] = ['chat.suggestionsEnabled', 'chat.lastModel', 'ui.hasVisitedEasySetup', 'ui.theme', 'system.earlyAccess', 'system.internetStatusTestUrl', 'ai.assistantCustomName', 'ai.remoteOllamaUrl', 'ai.ollamaFlashAttention', 'ai.autoThinking', 'rag.defaultIngestPolicy', 'autoUpdate.enabled', 'autoUpdate.windowStart', 'autoUpdate.windowEnd', 'autoUpdate.cooloffHours', 'appAutoUpdate.enabled', 'contentAutoUpdate.enabled', 'contentAutoUpdate.windowStart', 'contentAutoUpdate.windowEnd', 'contentAutoUpdate.cooloffHours', 'contentAutoUpdate.maxBytesPerWindow', 'benchmark.rerunBannerDismissed'];
export const SETTINGS_KEYS: KVStoreKey[] = [
'chat.suggestionsEnabled',
'chat.lastModel',
'ui.hasVisitedEasySetup',
'ui.theme',
'system.earlyAccess',
'system.internetStatusTestUrl',
'ai.assistantCustomName',
'ai.remoteOllamaUrl',
'ai.ollamaFlashAttention',
'ai.autoThinking',
'rag.defaultIngestPolicy',
'autoUpdate.enabled',
'autoUpdate.windowStart',
'autoUpdate.windowEnd',
'autoUpdate.cooloffHours',
'appAutoUpdate.enabled',
'contentAutoUpdate.enabled',
'contentAutoUpdate.windowStart',
'contentAutoUpdate.windowEnd',
'contentAutoUpdate.cooloffHours',
'contentAutoUpdate.maxBytesPerWindow',
'benchmark.rerunBannerDismissed',
'apps.homebox.apiKeyPepper'
];