diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-09-01 16:22:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-01 16:22:51 -0400 |
| commit | e617e218bd6ce92f63e5105161d3cdd922249d57 (patch) | |
| tree | e5861873690ba3adc52acb745c2edaa2377b7dc4 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | f56d3a077ab3b30e6f88dee9277d51f0a4f84dc0 (diff) | |
| parent | 2f67a007cd30596fa1559852de23134d2194a23a (diff) | |
Merge pull request #2133 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index abe572cc8..b0595b558 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -204,6 +204,8 @@ namespace MediaBrowser.Model.Configuration public bool DisplayCollectionsView { get; set; } public string[] LocalNetworkAddresses { get; set; } public string[] CodecsUsed { get; set; } + public bool EnableChannelView { get; set; } + public bool EnableExternalContentInSuggestions { get; set; } /// <summary> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. @@ -217,6 +219,7 @@ namespace MediaBrowser.Model.Configuration EnableLocalizedGuids = true; DisplaySpecialsWithinSeasons = true; + EnableExternalContentInSuggestions = true; ImageSavingConvention = ImageSavingConvention.Compatible; PublicPort = 8096; |
