feat: add 'blocked' status to tasks and todos (#22735)

This commit is contained in:
anj-s
2026-03-17 16:24:26 -07:00
committed by GitHub
parent e1eefffcf1
commit b8719bcd47
13 changed files with 64 additions and 9 deletions
@@ -22,6 +22,7 @@ export const TASK_TYPE_LABELS: Record<TaskType, string> = {
export enum TaskStatus {
OPEN = 'open',
IN_PROGRESS = 'in_progress',
BLOCKED = 'blocked',
CLOSED = 'closed',
}
export const TaskStatusSchema = z.nativeEnum(TaskStatus);