Ermögliche das Abrufen von Zeitkorrekturen für ein spezifisches Datum und aktualisiere die Benutzeroberfläche entsprechend
All checks were successful
Deploy production / deploy (push) Successful in 48s

This commit is contained in:
Torsten Schulz (local)
2026-08-26 16:19:39 +02:00
parent 4e6eeb470d
commit 4787700cd0
7 changed files with 77 additions and 77 deletions

View File

@@ -30,7 +30,7 @@ class TimefixController {
async getTodayTimefixes(req, res) {
try {
const userId = req.user.userId;
const timefixes = await timefixService.getTodayTimefixes(userId);
const timefixes = await timefixService.getTodayTimefixes(userId, req.query.date);
res.json(timefixes);
} catch (error) {
console.error('Fehler beim Abrufen der Timefixes:', error);