fix: cant add multiple future rehersals

This commit is contained in:
Nathan FONTEYNE 2026-07-10 14:51:03 +02:00
parent 749abda8ba
commit 5e28345ed5
7 changed files with 196 additions and 35 deletions

View file

@ -18,6 +18,13 @@ router.get(
})
);
router.get(
'/upcoming',
asyncHandler(async (req, res) => {
res.json(await setlistsRepo.findUpcoming());
})
);
router.get(
'/history',
asyncHandler(async (req, res) => {