jellyfin-server/MediaBrowser.Controller/Entities/PhotoAlbum.cs

32 lines
702 B
C#
Raw Normal View History

2014-08-29 04:06:30 +00:00
using MediaBrowser.Model.Configuration;
using System.Linq;
2014-10-20 03:04:45 +00:00
using System.Runtime.Serialization;
2014-08-29 04:06:30 +00:00
namespace MediaBrowser.Controller.Entities
{
public class PhotoAlbum : Folder
{
public override bool SupportsLocalMetadata
{
get
{
return false;
}
}
2014-10-20 03:04:45 +00:00
[IgnoreDataMember]
public override bool AlwaysScanInternalMetadataPath
{
get
{
return true;
}
}
2014-08-29 04:06:30 +00:00
protected override bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedItems.Contains(UnratedItem.Other);
}
}
}