From a8d87058bcf995bffe1e538c10385168ae43c7c8 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Mon, 13 Dec 2010 11:55:12 +0000 Subject: [PATCH] AdminUserName setting moved to AppConfig --- Builder/IISMainHandler/build.txt | 2 +- Common/Config.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 30f215b..b37f552 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1808 \ No newline at end of file +1810 \ No newline at end of file diff --git a/Common/Config.cs b/Common/Config.cs index 84f9b3e..b34229b 100644 --- a/Common/Config.cs +++ b/Common/Config.cs @@ -27,7 +27,7 @@ namespace FLocal.Common { public readonly TimeSpan ActivityThreshold; - public readonly string AdminUserName = "inga-lovinde"; + public readonly string AdminUserName; protected Config(NameValueCollection data) : base(data) { this.InitTime = DateTime.Now.ToLongTimeString(); @@ -38,6 +38,7 @@ namespace FLocal.Common { this.SaltPasswords = data["SaltPasswords"]; this.SaltUploader = data["SaltUploader"]; this.UploaderUrl = data["UploaderUrl"]; + this.AdminUserName = data["AdminUserName"]; this.ActivityThreshold = TimeSpan.FromMinutes(int.Parse(data["ActivityThreshold"])); }