浏览代码

Added EnableUserProfiles to server config

LukePulverenti Luke Pulverenti luke pulverenti 12 年之前
父节点
当前提交
b1212467a0
共有 1 个文件被更改,包括 8 次插入0 次删除
  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";
+        }
     }
 }