feat: implement 'not_started' task status with validation and UI updates

This commit is contained in:
2025-10-07 23:07:15 +02:00
parent a6ef325813
commit 33c5466d77
6 changed files with 31 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ export function createProjectTask(data) {
result = stmt.run(
data.project_id,
data.task_template_id,
data.status || "pending",
data.status || "not_started",
data.priority || "normal",
data.created_by || null,
data.assigned_to || null
@@ -114,7 +114,7 @@ export function createProjectTask(data) {
data.custom_task_name,
data.custom_max_wait_days || 0,
data.custom_description || "",
data.status || "pending",
data.status || "not_started",
data.priority || "normal",
data.created_by || null,
data.assigned_to || null