diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-01-22 21:00:38 -1000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-01-22 21:00:38 -1000 |
| commit | 539122f3c80fe1f27348f0ddfc7fd428a58384b8 (patch) | |
| tree | 069eadd594ac20df355f52fc13d435dcd26104f6 /cmd/dashboard/main.go | |
| parent | bedcd8a185e4197d087b2166afa79ff4dce25f7c (diff) | |
Add shopping quick-add feature
- Add Shopping tab to action modal (Ctrl+K)
- Add /partials/shopping-lists endpoint to fetch lists from Shopping board
- Store dropdown populated dynamically from Trello
- Items added via existing unified-add endpoint
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'cmd/dashboard/main.go')
| -rw-r--r-- | cmd/dashboard/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index 7645048..da49165 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -148,6 +148,7 @@ func main() { // Unified Quick Add (for Tasks tab) r.Post("/unified-add", h.HandleUnifiedAdd) r.Get("/partials/lists", h.HandleGetListsOptions) + r.Get("/partials/shopping-lists", h.HandleGetShoppingLists) // Task detail/edit r.Get("/tasks/detail", h.HandleGetTaskDetail) |
