Fix bug in create and start

This commit is contained in:
Louis Knight-Webb
2025-06-21 23:14:00 +01:00
parent 70e08853aa
commit 030c1966c3
7 changed files with 64 additions and 22 deletions

View File

@@ -26,6 +26,8 @@ export type SearchMatchType = "FileName" | "DirectoryName" | "FullPath";
export type CreateTask = { project_id: string, title: string, description: string | null, };
export type CreateTaskAndStart = { project_id: string, title: string, description: string | null, executor: ExecutorConfig | null, };
export type TaskStatus = "todo" | "inprogress" | "inreview" | "done" | "cancelled";
export type Task = { id: string, project_id: string, title: string, description: string | null, status: TaskStatus, created_at: string, updated_at: string, };