From f533fb878edb7485a2af7c0950178e5c3dd3bcdd Mon Sep 17 00:00:00 2001 From: miguel Date: Thu, 18 Apr 2024 16:32:21 -0500 Subject: [PATCH] wip: add dataintegrity on appstore --- src/apps/main/config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/apps/main/config.ts b/src/apps/main/config.ts index 9a59413d7..c521a4d28 100644 --- a/src/apps/main/config.ts +++ b/src/apps/main/config.ts @@ -37,6 +37,7 @@ export interface AppStore { preferedLanguage?: string; preferedTheme?: string; virtualdriveWindowsLetter: string; + dataIntegrityMaintenance?: boolean; } const schema: Schema = { @@ -103,6 +104,9 @@ const schema: Schema = { virtualdriveWindowsLetter: { type: 'string', }, + dataIntegrityMaintenance: { + type: 'boolean', + }, } as const; export const defaults: AppStore = { @@ -127,6 +131,7 @@ export const defaults: AppStore = { preferedLanguage: '', preferedTheme: 'system', virtualdriveWindowsLetter: 'I', + dataIntegrityMaintenance: false, }; const configStore = new Store({ schema, defaults });