feat(tracker): return TodoList display for tracker tools (#22060)

This commit is contained in:
anj-s
2026-03-13 11:18:33 -07:00
committed by GitHub
parent d368997ca3
commit dd8d4c98b3
4 changed files with 164 additions and 17 deletions
@@ -13,6 +13,12 @@ export enum TaskType {
}
export const TaskTypeSchema = z.nativeEnum(TaskType);
export const TASK_TYPE_LABELS: Record<TaskType, string> = {
[TaskType.EPIC]: '[EPIC]',
[TaskType.TASK]: '[TASK]',
[TaskType.BUG]: '[BUG]',
};
export enum TaskStatus {
OPEN = 'open',
IN_PROGRESS = 'in_progress',