You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
828 B
37 lines
828 B
using System.Runtime.Serialization;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Configuration;
|
|
using MediaBrowser.Model.Users;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class RecordingGroup : Folder
|
|
{
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
|
{
|
|
// Don't block.
|
|
return false;
|
|
}
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
|
{
|
|
return UnratedItem.LiveTvProgram;
|
|
}
|
|
|
|
public override bool SupportsLocalMetadata
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
[IgnoreDataMember]
|
|
public override SourceType SourceType
|
|
{
|
|
get { return SourceType.LiveTV; }
|
|
set { }
|
|
}
|
|
}
|
|
}
|