summaryrefslogtreecommitdiff
path: root/issues/phase3_step2_trello_lists.md
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-19 09:11:04 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-19 09:11:04 -1000
commit2215aaa458b318edb16337ab56cf658117023eb4 (patch)
tree73dc62cb8ed385e8ab5d255825b03ffb8845b27e /issues/phase3_step2_trello_lists.md
parent791034f1b588bf679f45a0f89168515fcbde66d5 (diff)
Implement Unified Quick Add for Tasks tab (Phase 3 Step 8)
Add Quick Add form to create Todoist tasks or Trello cards directly from the Tasks tab with optional due date support. Features: - HandleUnifiedAdd handler with due date parsing - HandleGetListsOptions for dynamic Trello list loading - Quick Add form with source toggle (Todoist/Trello) - Date picker for due dates - HX-Trigger refresh after successful creation - Pass boards to tasks-tab template for board selector Cleanup: - Remove resolved issue tracking files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'issues/phase3_step2_trello_lists.md')
-rw-r--r--issues/phase3_step2_trello_lists.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/issues/phase3_step2_trello_lists.md b/issues/phase3_step2_trello_lists.md
deleted file mode 100644
index f16e226..0000000
--- a/issues/phase3_step2_trello_lists.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Phase 3 Step 2: Trello Lists Support
-
-## Description
-To enable "Add Card" functionality, we need to know the available lists for each board. Currently, the `Board` model does not include lists, and the API client only fetches lists internally to map names.
-
-## Requirements
-1. **Update Models**: Add `List` struct and `Lists` field to `Board`.
-2. **Update Interface**: Add `GetLists` to `TrelloAPI`.
-3. **Update Client**:
- * Refactor `getLists` to return `[]models.List`.
- * Update `GetBoardsWithCards` to populate `board.Lists`.
- * Implement public `GetLists`.
-
-## Plan
-1. Modify `internal/models/types.go`.
-2. Modify `internal/api/interfaces.go`.
-3. Modify `internal/api/trello.go`.
-
-## Verification
-* Run `go test ./internal/api/...` to ensure no regressions.
-* (Implicit) The UI will eventually use this data.