mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-22 08:37:23 +01:00
Add support for filtering boxsets by parentId (#16882)
This commit is contained in:
@@ -21,6 +21,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
AlbumArtistIds = [];
|
||||
AlbumIds = [];
|
||||
AncestorIds = [];
|
||||
LinkedChildAncestorIds = [];
|
||||
ArtistIds = [];
|
||||
BlockUnratedItems = [];
|
||||
BoxSetLibraryFolders = [];
|
||||
@@ -265,6 +266,12 @@ namespace MediaBrowser.Controller.Entities
|
||||
|
||||
public Guid[] AncestorIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a list of ancestor ids that the item's linked children must descend from.
|
||||
/// Useful for filtering BoxSets/Playlists to only those that contain items from a specific library.
|
||||
/// </summary>
|
||||
public Guid[] LinkedChildAncestorIds { get; set; }
|
||||
|
||||
public Guid[] TopParentIds { get; set; }
|
||||
|
||||
public CollectionType?[] PresetViews { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user