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-12-20 06:06:27 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
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-12-20 06:06:27 +00:00
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2014-08-29 04:06:30 +00:00
|
|
|
|
{
|
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Other);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|