fix(KVStore): missing apps.homebox key
This commit is contained in:
parent
b249ef1ed2
commit
cf33072dcc
|
|
@ -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'
|
||||
];
|
||||
Loading…
Reference in New Issue