add movies carousel to dashboard and fixing movies routes in the backend, making the components more generic and reusable

This commit is contained in:
maxDorninger
2025-06-26 18:22:05 +02:00
parent dbc20a2c47
commit 2d33ea122e
7 changed files with 101 additions and 91 deletions

View File

@@ -217,7 +217,7 @@ if openid_client is not None:
app.include_router(tv_router.router, prefix="/tv", tags=["tv"])
app.include_router(torrent_router.router, prefix="/torrent", tags=["torrent"])
app.include_router(movies_router.router, prefix="/movie", tags=["movie"])
app.include_router(movies_router.router, prefix="/movies", tags=["movie"])
app.mount(
"/static/image",
StaticFiles(directory=basic_config.image_directory),