From 945c34590677e161a711ccaff0e1077197b1b178 Mon Sep 17 00:00:00 2001 From: Doot Agent Date: Mon, 6 Jul 2026 00:00:59 +0000 Subject: feat: remove Todoist integration entirely Native tasks (native_tasks table) fully replace Todoist. All Todoist API code, store functions, handlers, routes, templates, and tests have been removed. Migration 021 drops the now-unused tasks cache table. Co-Authored-By: Claude Sonnet 4.6 --- web/templates/partials/todoist-tasks.html | 99 ------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 web/templates/partials/todoist-tasks.html (limited to 'web/templates/partials/todoist-tasks.html') diff --git a/web/templates/partials/todoist-tasks.html b/web/templates/partials/todoist-tasks.html deleted file mode 100644 index 3296745..0000000 --- a/web/templates/partials/todoist-tasks.html +++ /dev/null @@ -1,99 +0,0 @@ -{{define "todoist-tasks"}} -
- -
-
-

Todoist Tasks

-
- - - {{if .Projects}} -
- - + Quick Add Task - -
- - - - - - -
-
- {{end}} - - - {{if .Tasks}} -
- {{range .Tasks}} -
- - - -
-

- {{.Content}} -

- {{if .Description}} -

{{.Description}}

- {{end}} -
- {{if .ProjectName}} - {{.ProjectName}} - {{end}} - {{if .DueDate}} - - Due: {{.DueDate.Format "Jan 2"}} - - {{end}} - {{range .Labels}} - {{.}} - {{end}} -
-
- {{if .URL}} - - - - - - {{end}} -
- {{end}} -
- {{else}} -
- - - -

No tasks found

-

- All tasks completed or no tasks available. -

-
- {{end}} -
-{{end}} -- cgit v1.2.3