kin: KIN-UI-020-backend_dev

This commit is contained in:
Gros Frumos 2026-03-18 21:45:11 +02:00
parent 859d2ac0f6
commit 9a426bc8a1

View file

@ -11,10 +11,10 @@ from datetime import datetime
from typing import Any from typing import Any
VALID_TASK_STATUSES = [ VALID_TASK_STATUSES = frozenset({
"pending", "in_progress", "review", "done", "pending", "in_progress", "review", "done",
"blocked", "decomposed", "cancelled", "revising", "blocked", "decomposed", "cancelled", "revising",
] })
VALID_COMPLETION_MODES = {"auto_complete", "review"} VALID_COMPLETION_MODES = {"auto_complete", "review"}