From 91ffff7771cb4ae9f89dbc2cb7a5cec70a3301c2 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 4 Sep 2014 23:48:53 -0400 Subject: added dlna music folders --- MediaBrowser.Controller/Library/ILibraryManager.cs | 11 +++++++++++ MediaBrowser.Controller/Library/IUserViewManager.cs | 2 ++ 2 files changed, 13 insertions(+) (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 5f88e0e58..8aaa08fdd 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -336,10 +336,21 @@ namespace MediaBrowser.Controller.Library /// Gets the named folder. /// /// The name. + /// The category. /// Type of the view. /// Name of the sort. /// The cancellation token. /// Task{Folder}. + Task GetNamedView(string name, string category, string viewType, string sortName, CancellationToken cancellationToken); + + /// + /// Gets the named view. + /// + /// The name. + /// Type of the view. + /// Name of the sort. + /// The cancellation token. + /// Task<UserView>. Task GetNamedView(string name, string viewType, string sortName, CancellationToken cancellationToken); } } \ No newline at end of file diff --git a/MediaBrowser.Controller/Library/IUserViewManager.cs b/MediaBrowser.Controller/Library/IUserViewManager.cs index 908525a2f..5b6189837 100644 --- a/MediaBrowser.Controller/Library/IUserViewManager.cs +++ b/MediaBrowser.Controller/Library/IUserViewManager.cs @@ -11,5 +11,7 @@ namespace MediaBrowser.Controller.Library Task> GetUserViews(UserViewQuery query, CancellationToken cancellationToken); Task GetUserView(string type, User user, string sortName, CancellationToken cancellationToken); + + Task GetUserView(string category, string type, User user, string sortName, CancellationToken cancellationToken); } } -- cgit v1.2.3