From e91e9d5d4d96f3a2cc60b123ea3a7cce4eb24fbe Mon Sep 17 00:00:00 2001 From: Zixuan James Li Date: Mon, 16 Dec 2024 19:22:46 -0500 Subject: [PATCH] wip; Current TODOs Also need tests for the global store change. And UI for updating the settings. Signed-off-by: Zixuan James Li --- lib/model/database.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/model/database.dart b/lib/model/database.dart index bb43862fc5..236a966d14 100644 --- a/lib/model/database.dart +++ b/lib/model/database.dart @@ -78,8 +78,10 @@ enum BrowserPreference { /// install of the app on this device). @DataClassName('GlobalSettingsData') class GlobalSettings extends Table { + // TODO(db): Maybe make this optional and/or use clientDefault? Column get themeSetting => textEnum()(); + // TODO(db): Maybe make this optional and/or use clientDefault? Column get browserPreference => textEnum()(); }