From 9c5cceb4ecc277ffb5a3a988f655ad674bf41c58 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 14 Aug 2014 09:24:30 -0400 Subject: update translations --- .../Configuration/ServerConfiguration.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 6600a3e91..d96412335 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -186,6 +186,7 @@ namespace MediaBrowser.Model.Configuration public bool DefaultMetadataSettingsApplied { get; set; } public bool EnableTokenAuthentication { get; set; } + public PeopleMetadataOptions PeopleMetadataOptions { get; set; } /// /// Initializes a new instance of the class. @@ -229,6 +230,8 @@ namespace MediaBrowser.Model.Configuration UICulture = "en-us"; + PeopleMetadataOptions = new PeopleMetadataOptions(); + MetadataOptions = new[] { new MetadataOptions(1, 1280) {ItemType = "Book"}, @@ -288,4 +291,21 @@ namespace MediaBrowser.Model.Configuration }; } } + + public class PeopleMetadataOptions + { + public bool DownloadActorMetadata { get; set; } + public bool DownloadDirectorMetadata { get; set; } + public bool DownloadProducerMetadata { get; set; } + public bool DownloadWriterMetadata { get; set; } + public bool DownloadComposerMetadata { get; set; } + public bool DownloadOtherPeopleMetadata { get; set; } + public bool DownloadGuestStarMetadata { get; set; } + + public PeopleMetadataOptions() + { + DownloadActorMetadata = true; + DownloadDirectorMetadata = true; + } + } } -- cgit v1.2.3