Web Interfaces
Kanban Board
Visual bug tracking board to manage discovered issues.
Board Columns
Backlog
Future test ideas
Todo
Bugs to fix
In Progress
Being worked on
Done
Resolved
API Access
bash
1# Get all tickets2curl http://localhost:3000/api/kanban/tickets3 4# Update ticket status5curl -X PATCH http://localhost:3000/api/kanban/tickets/ticket_001 \6 -H "Content-Type: application/json" \7 -d '{"status": "in_progress"}'