feat: Phase 0 data model - add Comment, Priority, collapsed, wipLimit fields

This commit is contained in:
Your Name
2026-02-16 14:31:56 +02:00
parent c6fea186ef
commit 02ef3acbfe
5 changed files with 35 additions and 0 deletions

View File

@@ -132,6 +132,8 @@ export const useBoardStore = create<BoardState & BoardActions>()(
cardIds: [],
width: "standard" as ColumnWidth,
color: null,
collapsed: false,
wipLimit: null,
},
],
}));
@@ -204,6 +206,8 @@ export const useBoardStore = create<BoardState & BoardActions>()(
dueDate: null,
attachments: [],
coverColor: null,
priority: "none",
comments: [],
createdAt: now(),
updatedAt: now(),
};