From dbb7fd61ff0545f8ebf7b9ece432f1408d43040c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 14 Mar 2015 00:50:23 -0400 Subject: add dynamic images --- MediaBrowser.Controller/Library/ILibraryManager.cs | 8 +++++--- MediaBrowser.Controller/Library/IUserViewManager.cs | 6 ++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 9c8ed45a5..d16589f07 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -302,7 +302,7 @@ namespace MediaBrowser.Controller.Library IEnumerable ReplaceVideosWithPrimaryVersions(IEnumerable items); /// - /// Gets the special folder. + /// Gets the named view. /// /// The user. /// The name. @@ -311,7 +311,7 @@ namespace MediaBrowser.Controller.Library /// Name of the sort. /// The cancellation token. /// Task<UserView>. - Task GetSpecialFolder(User user, + Task GetNamedView(User user, string name, string parentId, string viewType, @@ -321,12 +321,14 @@ namespace MediaBrowser.Controller.Library /// /// Gets the named view. /// + /// The user. /// The name. /// Type of the view. /// Name of the sort. /// The cancellation token. /// Task<UserView>. - Task GetNamedView(string name, + Task GetNamedView(User user, + string name, string viewType, string sortName, CancellationToken cancellationToken); diff --git a/MediaBrowser.Controller/Library/IUserViewManager.cs b/MediaBrowser.Controller/Library/IUserViewManager.cs index f55c17924..f0b862c2d 100644 --- a/MediaBrowser.Controller/Library/IUserViewManager.cs +++ b/MediaBrowser.Controller/Library/IUserViewManager.cs @@ -12,12 +12,10 @@ namespace MediaBrowser.Controller.Library { Task> GetUserViews(UserViewQuery query, CancellationToken cancellationToken); - Task GetUserView(string name, string parentId, string type, User user, string sortName, + Task GetUserSubView(string name, string parentId, string type, User user, string sortName, CancellationToken cancellationToken); - Task GetUserView(string type, string sortName, CancellationToken cancellationToken); - - Task GetUserView(string category, string type, User user, string sortName, CancellationToken cancellationToken); + Task GetUserSubView(string category, string type, User user, string sortName, CancellationToken cancellationToken); List>> GetLatestItems(LatestItemsQuery request); } -- cgit v1.2.3