Add cancelled status for tasks
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6e872121eb
commit
bf38532f59
5 changed files with 7 additions and 6 deletions
|
|
@ -141,7 +141,7 @@ class TaskPatch(BaseModel):
|
|||
status: str
|
||||
|
||||
|
||||
VALID_STATUSES = {"pending", "in_progress", "review", "done", "blocked"}
|
||||
VALID_STATUSES = {"pending", "in_progress", "review", "done", "blocked", "cancelled"}
|
||||
|
||||
|
||||
@app.patch("/api/tasks/{task_id}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue