From cb810b2ff1a9c42749ac0ff2b892efe630ca4c1b Mon Sep 17 00:00:00 2001 From: Grant Holle Date: Tue, 20 Sep 2016 09:58:29 +0800 Subject: [PATCH] Updating watchlist endpoints to match tmdb api, resolves #52 --- lib/endpoints.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/endpoints.json b/lib/endpoints.json index 1a4ef28..ed3382a 100644 --- a/lib/endpoints.json +++ b/lib/endpoints.json @@ -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" }