diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-02-08 15:00:36 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-08 15:00:36 -0500 |
| commit | 52d496386fd6a042aa0812deea052fc563688585 (patch) | |
| tree | c053a78597990e294560b7b745e8939e10f1c10f /MediaBrowser.Model | |
| parent | b073cdc91ff8fa783d8cd62bfdf9f03062c1a703 (diff) | |
| parent | 2fa03c19d48fca865f108895f28b7fb436b9edf4 (diff) | |
Merge pull request #2451 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index f9df776df..c2b1e3c89 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -192,6 +192,10 @@ namespace MediaBrowser.Model.Configuration public bool EnableExternalContentInSuggestions { get; set; } public int ImageExtractionTimeoutMs { get; set; } + + public PathSubstitution[] PathSubstitutions { get; set; } + public bool EnableSimpleArtistDetection { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. /// </summary> @@ -202,6 +206,8 @@ namespace MediaBrowser.Model.Configuration Migrations = new string[] { }; ImageExtractionTimeoutMs = 0; EnableLocalizedGuids = true; + PathSubstitutions = new PathSubstitution[] { }; + EnableSimpleArtistDetection = true; DisplaySpecialsWithinSeasons = true; EnableExternalContentInSuggestions = true; @@ -563,4 +569,10 @@ namespace MediaBrowser.Model.Configuration }; } } + + public class PathSubstitution + { + public string From { get; set; } + public string To { get; set; } + } }
\ No newline at end of file |
