Add actionable push notifications and fix recurring task completion
Features: - Add task action buttons to push notifications (complete, view, cancel, etc.) - Add button types logic for different task states (overdue, in_progress, etc.) - Implement Chain of Responsibility pattern for task categorization - Add comprehensive kanban categorization documentation Fixes: - Reset recurring task status to Pending after completion so tasks appear in correct kanban column (was staying in "In Progress") - Fix PostgreSQL EXTRACT function error in overdue notifications query - Update seed data to properly set next_due_date for recurring tasks Admin: - Add tasks list to residence detail page - Fix task edit page to properly handle all fields 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -200,7 +200,7 @@ func (h *Handler) HandleOverdueReminder(ctx context.Context, task *asynq.Task) e
|
||||
t.id as task_id,
|
||||
t.title as task_title,
|
||||
t.due_date,
|
||||
EXTRACT(DAY FROM ? - t.due_date)::int as days_overdue,
|
||||
EXTRACT(DAY FROM ?::timestamp - t.due_date)::int as days_overdue,
|
||||
COALESCE(t.assigned_to_id, r.owner_id) as user_id,
|
||||
r.name as residence_name
|
||||
FROM task_task t
|
||||
|
||||
Reference in New Issue
Block a user