Added endpoints for Recommended and Similar TV shows

This commit is contained in:
Alex Clark
2017-03-26 21:34:14 +01:00
parent 4b34ba1057
commit c3dc1bdcb5
2 changed files with 13 additions and 0 deletions

View File

@@ -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" }
}
}
}