auto-sync: 2026-05-18 11:41:28
This commit is contained in:
@@ -32,9 +32,9 @@ def _q(project_id: str) -> Queries:
|
||||
async def list_tasks(project_id: str,
|
||||
status: Optional[str] = None,
|
||||
assignee: Optional[str] = None,
|
||||
card_id: Optional[str] = None):
|
||||
parent_task: Optional[str] = None):
|
||||
bb = _bb(project_id)
|
||||
tasks = bb.list_tasks(status=status, assignee=assignee, card_id=card_id)
|
||||
tasks = bb.list_tasks(status=status, assignee=assignee, parent_task=parent_task)
|
||||
return {"tasks": [_task_to_dict(t) for t in tasks]}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user