From e4908050255578001d8e8b24060636648bbfb034 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 9 Jun 2026 13:52:03 +0200 Subject: [PATCH] Add SQL Server cache configuration to appsettings.json Added a "SqlServer" object under the "Cache" section in `appsettings.json` with properties for "ConnectionString", "SchemaName" (set to "dbo"), and "TableName" (set to "TBDD_CACHE"). No changes were made to the "SignatureCacheExpiration" property, but it was re-added in the diff for context. --- EnvelopeGenerator.API/appsettings.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/EnvelopeGenerator.API/appsettings.json b/EnvelopeGenerator.API/appsettings.json index 2efa9a48..a3907871 100644 --- a/EnvelopeGenerator.API/appsettings.json +++ b/EnvelopeGenerator.API/appsettings.json @@ -175,7 +175,12 @@ "EmailTemplate": [ "TBSIG_EMAIL_TEMPLATE_AFT_UPD" ] }, "Cache": { - "SignatureCacheExpiration": null + "SignatureCacheExpiration": null, + "SqlServer": { + "ConnectionString": null, + "SchemaName": "dbo", + "TableName": "TBDD_CACHE" + } }, "MainPageTitle": null, "AnnotationParams": {