mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
fixes #945 - Add genre views to dlna
This commit is contained in:
@@ -121,6 +121,16 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <returns>Task{SearchHintResult}.</returns>
|
||||
Task<SearchHintResult> GetSearchHintsAsync(SearchQuery query);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the filters.
|
||||
/// </summary>
|
||||
/// <param name="userId">The user identifier.</param>
|
||||
/// <param name="parentId">The parent identifier.</param>
|
||||
/// <param name="mediaTypes">The media types.</param>
|
||||
/// <param name="itemTypes">The item types.</param>
|
||||
/// <returns>Task<QueryFilters>.</returns>
|
||||
Task<QueryFilters> GetFilters(string userId, string parentId, string[] mediaTypes, string[] itemTypes);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the theme videos async.
|
||||
/// </summary>
|
||||
|
||||
@@ -60,6 +60,14 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task<ConnectionResult>.</returns>
|
||||
Task<ConnectionResult> Connect(CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Connects the specified API client.
|
||||
/// </summary>
|
||||
/// <param name="apiClient">The API client.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task<ConnectionResult>.</returns>
|
||||
Task<ConnectionResult> Connect(IApiClient apiClient, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Connects the specified server.
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
|
||||
public const string TvShowSeries = "TvShowSeries";
|
||||
public const string TvGenres = "TvGenres";
|
||||
public const string TvGenre = "TvGenre";
|
||||
public const string TvLatest = "TvLatest";
|
||||
public const string TvNextUp = "TvNextUp";
|
||||
public const string TvResume = "TvResume";
|
||||
@@ -47,17 +48,20 @@
|
||||
public const string MovieCollections = "MovieCollections";
|
||||
public const string MovieFavorites = "MovieFavorites";
|
||||
public const string MovieGenres = "MovieGenres";
|
||||
public const string MovieGenre = "MovieGenre";
|
||||
|
||||
public const string LatestGames = "LatestGames";
|
||||
public const string RecentlyPlayedGames = "RecentlyPlayedGames";
|
||||
public const string GameSystems = "GameSystems";
|
||||
public const string GameGenres = "GameGenres";
|
||||
public const string GameFavorites = "GameFavorites";
|
||||
public const string GameGenre = "GameGenre";
|
||||
|
||||
public const string MusicArtists = "MusicArtists";
|
||||
public const string MusicAlbumArtists = "MusicAlbumArtists";
|
||||
public const string MusicAlbums = "MusicAlbums";
|
||||
public const string MusicGenres = "MusicGenres";
|
||||
public const string MusicGenre = "MusicGenre";
|
||||
public const string MusicLatest = "MusicLatest";
|
||||
public const string MusicSongs = "MusicSongs";
|
||||
public const string MusicFavorites = "MusicFavorites";
|
||||
|
||||
Reference in New Issue
Block a user