| 70 | |
| 71 | /** Grouped kanban columns — vibe-kanban style */ |
| 72 | export interface KanbanGroup { |
| 73 | key: string; |
| 74 | label: string; |
| 75 | color: string; |
| 76 | statuses: string[]; |
| 77 | } |
| 78 | |
| 79 | export const KANBAN_GROUPS: KanbanGroup[] = [ |
| 80 | { key: "todo", label: "To Do", color: "#64748b", statuses: ["queued", "accepted"] }, |
nothing calls this directly
no outgoing calls
no test coverage detected