feat: add created_by field to Task interface

main
borja (aider) 3 months ago
parent 1b89c845ef
commit 8c08ec763c

@ -6,6 +6,7 @@ export interface Task {
completed: boolean; completed: boolean;
completed_at: Date | null; completed_at: Date | null;
group_id: string; // WhatsApp group ID where task was created group_id: string; // WhatsApp group ID where task was created
created_by: string; // WhatsApp user ID of task creator
} }
export interface TaskAssignment { export interface TaskAssignment {

Loading…
Cancel
Save