Updating watchlist endpoints to match tmdb api, resolves #52

This commit is contained in:
Grant Holle
2016-09-20 09:58:29 +08:00
parent 20e73801df
commit cb810b2ff1

View File

@@ -98,8 +98,9 @@
, "FavoriteMovies" : { "resource": "account/:id/favorite_movies", "method": "get" }
, "FavoriteUpdate" : { "resource": "account/:id/favorite", "method": "post" }
, "RatedMovies" : { "resource": "account/:id/rated_movies", "method": "get" }
, "MovieWatchlist" : { "resource": "account/:id/movie_watchlist", "method": "get" }
, "MovieWatchlistUpdate" : { "resource": "account/:id/movie_watchlist", "method": "post" }
, "MovieWatchlist" : { "resource": "account/:id/watchlist/movies", "method": "get" }
, "TvWatchlist" : { "resource": "account/:id/watchlist/tv", "method": "get" }
, "WatchlistUpdate" : { "resource": "account/:id/watchlist", "method": "post" }
}
, "misc" : {
"LatestMovies" : { "resource": "movie/latest", "method": "get" }