updating data models to have status for both week and day and updated calendar to complete based on status

This commit is contained in:
Will Baumbach
2026-04-22 10:33:26 -05:00
parent 3744423e5f
commit 2c671744c4
7 changed files with 328 additions and 141 deletions

View File

@@ -12,5 +12,12 @@ export interface Plan {
export interface Week {
week: number,
totalMilage: number,
status: Status,
workouts: Workout[]
}
export enum Status {
Complete = 'complete',
Incomplete = 'incomplete',
Skipped = 'skipped'
}