Browse Source

Added EnableUserProfiles to server config

LukePulverenti Luke Pulverenti luke pulverenti 13 năm trước cách đây
mục cha
commit
b1212467a0
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  1. 8 0
      MediaBrowser.Model/Configuration/ServerConfiguration.cs

+ 8 - 0
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -5,5 +5,13 @@ namespace MediaBrowser.Model.Configuration
     {
         public bool EnableInternetProviders { get; set; }
         public string WeatherZipCode { get; set; }
+        public bool EnableUserProfiles { get; set; }
+
+        public ServerConfiguration()
+            : base()
+        {
+            EnableUserProfiles = true;
+            WeatherZipCode = "02116";
+        }
     }
 }