aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ICollectionFolder.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/ICollectionFolder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/ICollectionFolder.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/MediaBrowser.Controller/Entities/ICollectionFolder.cs b/MediaBrowser.Controller/Entities/ICollectionFolder.cs
index f4544f173..d8b02034c 100644
--- a/MediaBrowser.Controller/Entities/ICollectionFolder.cs
+++ b/MediaBrowser.Controller/Entities/ICollectionFolder.cs
@@ -20,17 +20,4 @@ namespace MediaBrowser.Controller.Entities
{
bool EnableUserSpecificView { get; }
}
-
- public static class CollectionFolderExtensions
- {
- public static string GetViewType(this ICollectionFolder folder, User user)
- {
- if (user.Configuration.PlainFolderViews.Contains(folder.Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
- {
- return null;
- }
-
- return folder.CollectionType;
- }
- }
}