Add event themes API routes for CRUD operations

Implemented API endpoints for creating, reading, updating, and listing event themes. Integrated the new routes into the FastAPI application router under the '/event_themes' prefix.
This commit is contained in:
2025-03-05 12:42:00 +01:00
parent 6884cbbf64
commit b3a4c45202
3 changed files with 70 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
from fastapi import APIRouter
from app.api.routes import auth
from app.api.routes import event_themes
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
api_router.include_router(event_themes.router, prefix="/event_themes", tags=["event_themes"])