mirror of
https://github.com/KevinMidboe/moviedb.git
synced 2025-12-08 20:38:50 +00:00
Added endpoints for Recommended and Similar TV shows
This commit is contained in:
@@ -119,5 +119,11 @@
|
||||
, "TopRatedTvs" : { "resource": "tv/top_rated", "method": "get" }
|
||||
, "PopularTvs" : { "resource": "tv/popular", "method": "get" }
|
||||
}
|
||||
, "recommend" : {
|
||||
"Tv" : { "resource": "tv/:id/recommendations", "method": "get" }
|
||||
},
|
||||
"similar": {
|
||||
"Tv": { "resource": "tv/:id/similar", "method": "get" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -111,6 +111,13 @@ module.exports={
|
||||
, "TopRatedTvs" : { "resource": "tv/top_rated", "method": "get" }
|
||||
, "PopularTvs" : { "resource": "tv/popular", "method": "get" }
|
||||
}
|
||||
, "recommend": {
|
||||
"Tv": { "resource": "tv/:id/recommendations", "method": "get" }
|
||||
}
|
||||
,
|
||||
"similar": {
|
||||
"Tv": { "resource": "tv/:id/similar", "method": "get" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user