mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
We now show streaming information on the details page
This commit is contained in:
parent
88453f0a99
commit
ea7307ac07
38 changed files with 3267 additions and 154 deletions
|
@ -13,7 +13,7 @@ namespace Ombi.Api.TheMovieDb
|
|||
Task<List<MovieSearchResult>> NowPlaying(string languageCode, int? page = null);
|
||||
Task<List<MovieSearchResult>> PopularMovies(string languageCode, int? page = null, CancellationToken cancellationToken = default(CancellationToken));
|
||||
Task<List<MovieSearchResult>> SearchMovie(string searchTerm, int? year, string languageCode);
|
||||
Task<List<TvSearchResult>> SearchTv(string searchTerm);
|
||||
Task<List<TvSearchResult>> SearchTv(string searchTerm, string year = default);
|
||||
Task<List<MovieSearchResult>> TopRated(string languageCode, int? page = null);
|
||||
Task<List<MovieSearchResult>> Upcoming(string languageCode, int? page = null);
|
||||
Task<List<MovieSearchResult>> SimilarMovies(int movieId, string langCode);
|
||||
|
@ -28,5 +28,7 @@ namespace Ombi.Api.TheMovieDb
|
|||
Task<Collections> GetCollection(string langCode, int collectionId, CancellationToken cancellationToken);
|
||||
Task<List<Keyword>> SearchKeyword(string searchTerm);
|
||||
Task<Keyword> GetKeyword(int keywordId);
|
||||
Task<WatchProviders> GetMovieWatchProviders(int theMoviedbId, CancellationToken token);
|
||||
Task<WatchProviders> GetTvWatchProviders(int theMoviedbId, CancellationToken token);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue