diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-09-20 13:22:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-09-20 13:22:34 -0400 |
| commit | e8010955dc10c4be9b73c9a10de84356744b1cca (patch) | |
| tree | a9ef54677aa26a88e1134abfe6f799a778824f8d /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 6d3dcd826695973fd958c92a775416a2e7b65835 (diff) | |
fix merge conflicts
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 378592443..551ca2305 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -45,6 +45,12 @@ namespace MediaBrowser.Model.Configuration public bool EnableHttps { get; set; } /// <summary> + /// Gets or sets a value indicating whether [enable user specific user views]. + /// </summary> + /// <value><c>true</c> if [enable user specific user views]; otherwise, <c>false</c>.</value> + public bool EnableUserSpecificUserViews { get; set; } + + /// <summary> /// Gets or sets the value pointing to the file system where the ssl certiifcate is located.. /// </summary> /// <value>The value pointing to the file system where the ssl certiifcate is located..</value> @@ -99,12 +105,6 @@ namespace MediaBrowser.Model.Configuration public bool DisableStartupScan { get; set; } /// <summary> - /// Gets or sets a value indicating whether [enable user views]. - /// </summary> - /// <value><c>true</c> if [enable user views]; otherwise, <c>false</c>.</value> - public bool EnableUserViews { get; set; } - - /// <summary> /// Gets or sets a value indicating whether [enable library metadata sub folder]. /// </summary> /// <value><c>true</c> if [enable library metadata sub folder]; otherwise, <c>false</c>.</value> @@ -223,7 +223,7 @@ namespace MediaBrowser.Model.Configuration public bool EnableWindowsShortcuts { get; set; } public bool EnableVideoFrameByFrameAnalysis { get; set; } - + /// <summary> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. /// </summary> @@ -274,7 +274,11 @@ namespace MediaBrowser.Model.Configuration InsecureApps9 = new[] { + "Chromecast", + "iOS", "Unknown app", + "iPad", + "iPhone", "Windows Phone" }; @@ -577,4 +581,4 @@ namespace MediaBrowser.Model.Configuration }; } } -} +}
\ No newline at end of file |
