Commit Graph

8 Commits

Author SHA1 Message Date
Max
f77932435e Signed-off-by: Max <ai-agent@topdoglabs.com> 2026-02-24 17:42:28 -06:00
Max
ab8cc0a6a1 fixed
Signed-off-by: Max <ai-agent@topdoglabs.com>
2026-02-22 17:56:39 -06:00
Max
b2b2beef2d removed defaults and legacy
Signed-off-by: Max <ai-agent@topdoglabs.com>
2026-02-22 17:48:49 -06:00
Max
eba669f187 Signed-off-by: Max <ai-agent@topdoglabs.com> 2026-02-22 14:55:28 -06:00
Max
29cac07f58 fix issues with timing on sprints
Signed-off-by: Max <ai-agent@topdoglabs.com>
2026-02-22 14:54:05 -06:00
Max
1475a13b4d Add sorting to main Kanban board in page.tsx
- Sprint tasks in main Kanban view now sorted by updatedAt descending
- Fixes issue where Done column tasks weren't sorted properly
- Matches sorting in SprintBoard.tsx and BacklogView.tsx
2026-02-21 22:22:47 -06:00
Max
873712e037 Add individual get endpoints for projects and sprints
New API endpoints:
- GET /api/projects/[id] - Get single project
- GET /api/sprints/[id] - Get single sprint

New CLI commands:
- project get <id> - Get specific project
- sprint get <id> - Get specific sprint

Project and Sprint CRUD now complete:
 list, get, create, update, delete
2026-02-21 17:50:42 -06:00
Max
42188457da Add complete CRUD APIs for projects and sprints
- New API endpoints:
  - GET /api/projects - List projects
  - POST /api/projects - Create project
  - PATCH /api/projects - Update project
  - DELETE /api/projects - Delete project
  - GET /api/sprints - List sprints
  - POST /api/sprints - Create sprint
  - PATCH /api/sprints - Update sprint
  - DELETE /api/sprints - Delete sprint

- Added CLI commands:
  - project create/update/delete
  - sprint create/update/delete

- Updated help text with new commands

Web UI can now do full CRUD on projects/sprints and CLI matches 1:1
2026-02-21 17:40:09 -06:00