diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-01-23 16:10:52 -1000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-01-23 16:10:52 -1000 |
| commit | 7828e19501b3ca8b2e86ca7297f580c659e5c9b8 (patch) | |
| tree | e3113af67fcecc459d81b213d7f043630dccae98 /internal/handlers/handlers_test.go | |
| parent | d11334c0999efb670a8eab93527a50f644fdfceb (diff) | |
Fix bugs #24-27: calendar dedup, uncomplete tasks, planning view
Bug fixes:
- #24: Deduplicate calendar events across multiple calendars using
summary + start time as key
- #25: Change event icon from calendar to clock to avoid confusion
with date display
- #26: Add task uncomplete functionality via ReopenTask API for
Todoist and closed=false for Trello
- #27: Restructure planning view with sections for Scheduled (timed
events/tasks), Today (unscheduled), Quick Add, and Upcoming (3 days)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'internal/handlers/handlers_test.go')
| -rw-r--r-- | internal/handlers/handlers_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go index 5628237..d14f71b 100644 --- a/internal/handlers/handlers_test.go +++ b/internal/handlers/handlers_test.go @@ -87,6 +87,10 @@ func (m *mockTodoistClient) CompleteTask(ctx context.Context, taskID string) err return nil } +func (m *mockTodoistClient) ReopenTask(ctx context.Context, taskID string) error { + return nil +} + func (m *mockTodoistClient) Sync(ctx context.Context, syncToken string) (*api.TodoistSyncResponse, error) { if m.err != nil { return nil, m.err |
