Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/src/server/api_routes/projects_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,9 @@ async def list_project_tasks(
"task_order": task.get("task_order"),
"assignee": task.get("assignee"),
"priority": task.get("priority"),
"feature": task.get("feature")
"feature": task.get("feature"),
"description": task.get("description"),
"updated_at": task.get("updated_at"),
} for task in tasks],
"project_id": project_id,
"count": len(tasks)
Expand Down