diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-21 00:04:11 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-21 00:04:11 -0500 |
| commit | 7cd41a6ed62c46006307add9de92e0b329bd0edc (patch) | |
| tree | f8d6515c218db6be90028f3fc7bacd549a0dab8f /MediaBrowser.Model/Configuration/UserConfiguration.cs | |
| parent | a91c676565579c0ce7f7954e89a2b57a5c6c5780 (diff) | |
easier user library setup
Diffstat (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/UserConfiguration.cs | 12 |
1 files changed, 5 insertions, 7 deletions
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 /// </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> - /// <value><c>true</c> if [use custom library]; otherwise, <c>false</c>.</value> - public bool UseCustomLibrary { get; set; } /// <summary> /// 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; } + /// <summary> /// Initializes a new instance of the <see cref="UserConfiguration" /> class. /// </summary> @@ -84,6 +80,8 @@ namespace MediaBrowser.Model.Configuration EnableLiveTvManagement = true; EnableMediaPlayback = true; EnableLiveTvAccess = true; + + BlockedMediaFolders = new string[] { }; } } } |
