- Implemented assigning todos

This commit is contained in:
Dejan
2024-10-20 20:45:09 +02:00
parent 206ffd5a88
commit 709b333ee1
6 changed files with 75 additions and 36 deletions

View File

@ -7,5 +7,6 @@ export interface IToDo {
rotate: boolean;
repeatType: string;
creatorId?: string,
familyId?: string
familyId?: string,
assignees?: string[]; // Optional list of assignees
}