- Implemented handling of repeat days change

This commit is contained in:
Dejan
2024-10-24 20:35:42 +02:00
parent ae01b9daaf
commit 0b11381fce
3 changed files with 41 additions and 11 deletions

View File

@ -11,4 +11,15 @@ export interface IToDo {
creatorId?: string;
familyId?: string;
assignees?: string[]; // Optional list of assignees
connectedTodoId?: string;
}
export const DAYS_OF_WEEK_ENUM = {
MONDAY: "Monday",
TUESDAY: "Tuesday",
WEDNESDAY: "Wednesday",
THURSDAY: "Thursday",
FRIDAY: "Friday",
SATURDAY: "Saturday",
SUNDAY: "Sunday"
}