feat: implement movie listing functionality with pagination and search

This commit is contained in:
2026-05-12 13:57:55 +02:00
parent fb81aa10c1
commit 4269eca582
17 changed files with 239 additions and 64 deletions

View File

@@ -177,6 +177,7 @@ fn api_routes(rate_limit: u64) -> Router<AppState> {
"/movies/{id}/history",
routing::get(handlers::api::get_review_history),
)
.route("/movies", routing::get(handlers::api::list_movies))
.route(
"/movies/{id}",
routing::get(handlers::api::get_movie_detail),