Timer implemented. No working tests.

This commit is contained in:
AG
2025-12-10 23:07:31 +02:00
parent 3df4abba47
commit b86664816d
24 changed files with 806 additions and 116 deletions

View File

@@ -46,6 +46,7 @@ model UserProfile {
gender String?
birthDate DateTime?
language String? @default("en")
restTimerDefault Int? @default(120) // Default rest timer in seconds
}
model Exercise {
@@ -116,5 +117,6 @@ model PlanExercise {
exercise Exercise @relation(fields: [exerciseId], references: [id])
order Int
isWeighted Boolean @default(false)
restTime Int? // Optional rest time target in seconds
}