Display free tickets in standing areas

This commit is contained in:
2024-10-23 13:36:21 +02:00
parent 376a4ec385
commit 093eba9af6
9 changed files with 81 additions and 3 deletions

View File

@@ -5,6 +5,9 @@ import { Request, Response, Router } from "express";
export const genre = Router()
/**
* Get all available Genres
*/
genre.get("/", (req: Request, res: Response) => {
Genre.findAll()
.then(genres => {