Remove EventTable in database, redesign frontend URL paths

This commit is contained in:
2024-10-12 15:54:03 +02:00
parent 7b991d2ff8
commit 60e217db03
40 changed files with 955 additions and 1203 deletions

View File

@@ -9,7 +9,6 @@ import { concert } from './routes/concert.routes'
import { band } from './routes/band.routes'
import { genre } from './routes/genre.routes'
import { location } from './routes/location.routes'
import { events } from './routes/events.routes'
import { city } from './routes/city.routes'
import { exercises } from './routes/exercise.routes'
@@ -36,7 +35,6 @@ app.use((req, res, next) => {
// Routes
app.use("/api", api)
app.use("/events", events)
app.use("/bands", band)
app.use("/locations", location)
app.use("/genres", genre)