From 7cd41a6ed62c46006307add9de92e0b329bd0edc Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 21 Feb 2014 00:04:11 -0500 Subject: easier user library setup --- MediaBrowser.Model/Configuration/UserConfiguration.cs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index c306c7775..fa2554e05 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -17,12 +17,6 @@ namespace MediaBrowser.Model.Configuration /// /// true if items with no rating info should be blocked; otherwise, false. public bool BlockNotRated { get; set; } - - /// - /// Gets or sets a value indicating whether [use custom library]. - /// - /// true if [use custom library]; otherwise, false. - public bool UseCustomLibrary { get; set; } /// /// Gets or sets a value indicating whether this instance is administrator. @@ -71,7 +65,9 @@ namespace MediaBrowser.Model.Configuration public bool EnableLiveTvAccess { get; set; } public bool EnableMediaPlayback { get; set; } - + + public string[] BlockedMediaFolders { get; set; } + /// /// Initializes a new instance of the class. /// @@ -84,6 +80,8 @@ namespace MediaBrowser.Model.Configuration EnableLiveTvManagement = true; EnableMediaPlayback = true; EnableLiveTvAccess = true; + + BlockedMediaFolders = new string[] { }; } } } -- cgit v1.2.3