diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-01 00:06:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-01 00:06:28 -0400 |
| commit | 43943657b7ea0c607f998c6397d3878e3fb05c5f (patch) | |
| tree | 3ac5009b82a2366bed09be8b0222a53a9c8c57de /MediaBrowser.Controller/Collections/ICollectionManager.cs | |
| parent | f77209cf77aebd2ba8a8f35de41cbbaeaf36a47a (diff) | |
add additional view settings
Diffstat (limited to 'MediaBrowser.Controller/Collections/ICollectionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Collections/ICollectionManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Collections/ICollectionManager.cs b/MediaBrowser.Controller/Collections/ICollectionManager.cs index b63c49f99..fdb2a4975 100644 --- a/MediaBrowser.Controller/Collections/ICollectionManager.cs +++ b/MediaBrowser.Controller/Collections/ICollectionManager.cs @@ -38,5 +38,12 @@ namespace MediaBrowser.Controller.Collections /// <param name="user">The user.</param> /// <returns>IEnumerable{BaseItem}.</returns> IEnumerable<BaseItem> CollapseItemsWithinBoxSets(IEnumerable<BaseItem> items, User user); + + /// <summary> + /// Gets the collections folder. + /// </summary> + /// <param name="userId">The user identifier.</param> + /// <returns>Folder.</returns> + Folder GetCollectionsFolder(string userId); } } |
