Add review column

This commit is contained in:
Louis Knight-Webb
2025-06-15 11:16:49 -04:00
parent b0c8470099
commit 752c76fa9d
4 changed files with 42 additions and 24 deletions

View File

@@ -13,7 +13,7 @@ type CreateTask = { project_id: string, title: string, description: string | nul
type Task = { id: string, project_id: string, title: string, description: string | null, status: TaskStatus, created_at: string, updated_at: string, };
type TaskStatus = "Todo" | "InProgress" | "Done" | "Cancelled";
type TaskStatus = "todo" | "inprogress" | "inreview" | "done" | "cancelled";
type UpdateTask = { title: string | null, description: string | null, status: TaskStatus | null, };