Add block unrated option

This commit is contained in:
Eric Reed
2013-05-23 11:07:25 -04:00
parent 9abafd83eb
commit 8452e2f125
4 changed files with 28 additions and 1 deletions

View File

@@ -12,6 +12,12 @@ namespace MediaBrowser.Model.Configuration
/// <value>The max parental rating.</value>
public int? MaxParentalRating { get; set; }
/// <summary>
/// Gets or sets a value indicating whether items with no rating information should be blocked.
/// </summary>
/// <value><c>true</c> if items with no rating info should be blocked; otherwise, <c>false</c>.</value>
public bool BlockNotRated { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [use custom library].
/// </summary>
@@ -48,6 +54,7 @@ namespace MediaBrowser.Model.Configuration
public UserConfiguration()
{
IsAdministrator = true;
BlockNotRated = true;
}
}
}