代码重构,准备新增客户端统一的系统配置界面

This commit is contained in:
dathlin
2017-09-16 22:17:53 +08:00
parent b62b30f0dd
commit ed6bba7550
8 changed files with 257 additions and 3 deletions

View File

@@ -153,9 +153,9 @@ namespace CommonLibrary
{ nameof(Announcement), new JValue(Announcement) },
{ nameof(Can_Account_Login), new JValue(Can_Account_Login) },
{ nameof(Account_Forbidden_Reason), new JValue(Account_Forbidden_Reason) },
{ nameof(SystemFactories), new JArray(SystemFactories) },
{ nameof(SystemFactories), new JValue((new JArray(SystemFactories)).ToString()) },
{ nameof(WhetherToEnableTrustedClientAuthentication),new JValue(WhetherToEnableTrustedClientAuthentication) },
{ nameof(TrustedClientList),new JArray(TrustedClientList) }
{ nameof(TrustedClientList),new JValue((new JArray(TrustedClientList)).ToString()) }
};
return json.ToString();
}