aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ServerConfiguration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-28 23:56:20 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-28 23:56:20 -0400
commite9fb806478e974b200b54f8acff5eb09bdef4c32 (patch)
tree6b83c4728d93eb4bc26331d946f500243f5a1f24 /MediaBrowser.Model/Configuration/ServerConfiguration.cs
parent0f4c28c120751e1cf6e0562ef0445c7fa46cf0a4 (diff)
3.0.5231.40980
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/ServerConfiguration.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
index 03857d8b9..0d2c1066b 100644
--- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
@@ -32,7 +32,7 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
/// <value><c>true</c> if [enable u pn p]; otherwise, <c>false</c>.</value>
public bool EnableUPnP { get; set; }
-
+
/// <summary>
/// Gets or sets the HTTP server port number.
/// </summary>
@@ -62,7 +62,7 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
/// <value>The metadata path.</value>
public string MetadataPath { get; set; }
-
+
/// <summary>
/// Gets or sets the display name of the season zero.
/// </summary>
@@ -220,13 +220,16 @@ namespace MediaBrowser.Model.Configuration
public string WanDdns { get; set; }
public string UICulture { get; set; }
-
+
public DlnaOptions DlnaOptions { get; set; }
public double DownMixAudioBoost { get; set; }
public NotificationOptions NotificationOptions { get; set; }
+ [Obsolete("Please use RequireManualLoginForMobileApps")]
+ public string[] ManualLoginClients { get; set; }
+
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -292,6 +295,8 @@ namespace MediaBrowser.Model.Configuration
UICulture = "en-us";
NotificationOptions = new NotificationOptions();
+
+ ManualLoginClients = new string[] { };
}
}