Added the ability to specify a year when searching for movies

This commit is contained in:
tidusjar 2018-12-30 11:43:30 +00:00
parent 8154334dae
commit 53cdcdc23b
14 changed files with 2108 additions and 1019 deletions

View file

@ -11,7 +11,7 @@ namespace Ombi.Api.TheMovieDb
Task<MovieResponseDto> GetMovieInformationWithExtraInfo(int movieId);
Task<List<MovieSearchResult>> NowPlaying();
Task<List<MovieSearchResult>> PopularMovies();
Task<List<MovieSearchResult>> SearchMovie(string searchTerm);
Task<List<MovieSearchResult>> SearchMovie(string searchTerm, int? year);
Task<List<TvSearchResult>> SearchTv(string searchTerm);
Task<List<MovieSearchResult>> TopRated();
Task<List<MovieSearchResult>> Upcoming();