update inherited images

This commit is contained in:
Luke Pulverenti
2017-06-29 15:10:58 -04:00
parent a0910fc280
commit dcaf8356e6
23 changed files with 178 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Serialization;
namespace MediaBrowser.Controller.Collections
{
@@ -18,11 +19,21 @@ namespace MediaBrowser.Controller.Collections
}
}
[IgnoreDataMember]
public override bool SupportsInheritedParentImages
{
get
{
return false;
}
}
public bool IsHiddenFromUser(User user)
{
return !ConfigurationManager.Configuration.DisplayCollectionsView;
}
[IgnoreDataMember]
public override string CollectionType
{
get { return Model.Entities.CollectionType.BoxSets; }