Error page

This commit is contained in:
2024-11-05 18:43:47 +01:00
parent 1088060580
commit b06b81f140
19 changed files with 136 additions and 19 deletions

View File

@@ -110,6 +110,9 @@ concert.get("/concert/:id", (req: Request, res: Response) => {
res.status(200).json(concert)
})
.catch(e => {
res.status(404).send()
})
})