Web.deploy Config

This commit is contained in:
2025-06-05 15:23:04 +02:00
parent ed4dc8fa75
commit 08963fe2f9
6 changed files with 406 additions and 68 deletions

View File

@@ -1,6 +1,7 @@
using BeWo.Data;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Service.Core;
using BeWo.Service.ServiceImplementations;
using BS.Shared;
using BS.Shared.AppSender;
@@ -18,6 +19,7 @@ using System.Threading;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using WebSecretConfigSetting = BeWo.Service.WebSecretConfigSetting;
namespace Host
{
@@ -32,7 +34,7 @@ namespace Host
{
private readonly string INVALID_INPUT = "Bad Request";
private string GkvSecretKey { get; set; } = ConfigurationManager.AppSettings.Get("GkvSecretKey");
private string GkvSecretKey { get; set; } = MergedConfig.GetSecretSetting(WebSecretConfigSetting.GkvSecretKey);
public GkvClientRequestDC GkvClientRequest { get; set; }