add todo repeat freq

This commit is contained in:
ivic00
2024-10-22 19:34:59 +02:00
parent a8eb2ff48b
commit fd6f080e7c
13 changed files with 466 additions and 199 deletions

View File

@ -1,12 +1,14 @@
export interface IToDo {
id: string;
title: string;
done: boolean;
date: Date | null;
points: number;
rotate: boolean;
repeatType: string;
creatorId?: string,
familyId?: string,
assignees?: string[]; // Optional list of assignees
}
id: string;
title: string;
done: boolean;
date: Date | null;
points: number;
rotate: boolean;
repeatType: string;
repeatDays?: string[];
repeatWeeks?: number;
creatorId?: string;
familyId?: string;
assignees?: string[]; // Optional list of assignees
}