diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-28 21:40:46 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-28 21:40:46 -0500 |
| commit | 97ece5bd6f6e6a3dd8226dd9990b48f67c45f22c (patch) | |
| tree | 07addfa562d50651a9007e8d6416c034b43af104 /MediaBrowser.Model/Configuration/UserConfiguration.cs | |
| parent | 3c8c6abca7c1f61a3f693b01eb567b1e1126d067 (diff) | |
update translations
Diffstat (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/UserConfiguration.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index 3397d5d20..f0a27a2b9 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -86,7 +86,8 @@ namespace MediaBrowser.Model.Configuration public bool EnableUserPreferenceAccess { get; set; } public string[] LatestItemsExcludes { get; set; } - + public string[] BlockedTags { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="UserConfiguration" /> class. /// </summary> @@ -102,6 +103,7 @@ namespace MediaBrowser.Model.Configuration OrderedViews = new string[] { }; BlockedMediaFolders = new string[] { }; DisplayChannelsWithinViews = new string[] { }; + BlockedTags = new string[] { }; BlockedChannels = new string[] { }; BlockUnratedItems = new UnratedItem[] { }; |
