List all tasks belonging to a project.
curl http://localhost:3000/api/v1/tasks/project/clxyz456 \
-H "Authorization: Bearer <token>"
[
{
"id": "clxyz789",
"title": "Implement login",
"status": "TODO",
"priority": "HIGH",
"projectId": "clxyz456"
}
]
curl http://localhost:3000/api/v1/tasks/project/clxyz456 \
-H "Authorization: Bearer <token>"
[
{
"id": "clxyz789",
"title": "Implement login",
"status": "TODO",
"priority": "HIGH",
"projectId": "clxyz456"
}
]