enhance(frontend): ウィジェットもpreference管理に

This commit is contained in:
syuilo
2025-03-09 15:13:49 +09:00
parent 2918fb2609
commit 69eee9f050
8 changed files with 57 additions and 61 deletions

View File

@@ -35,6 +35,15 @@ export const PREF_DEF = {
accountDependent: true,
default: null as string | null,
},
widgets: {
accountDependent: true,
default: [] as {
name: string;
id: string;
place: string | null;
data: Record<string, any>;
}[],
},
themes: {
default: [] as Theme[],