Merge pull request #301 from ericfisherdev/fix/feature-field-not-updating

Issue 282: Fix missing feature field in project tasks API response
This commit is contained in:
Wirasm 2025-08-19 09:46:01 +03:00 committed by GitHub
commit 92b3c047e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -273,6 +273,7 @@ class TaskService:
"status": task["status"],
"assignee": task.get("assignee", "User"),
"task_order": task.get("task_order", 0),
"feature": task.get("feature"),
"created_at": task["created_at"],
"updated_at": task["updated_at"],
})