From d2d992b41e35cf1528d342576452b5601ea83c91 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 28 May 2026 22:30:28 +0200 Subject: [PATCH] Add DbTriggerParams section to appsettings.json Introduced a new `DbTriggerParams` configuration section in `appsettings.json` to define database triggers for various application components. The section includes keys such as `Envelope`, `History`, `EmailOut`, `EnvelopeReceiverReadOnly`, `Receiver`, and `EmailTemplate`, each with corresponding arrays of trigger names. This change enhances the application's ability to manage database events in a structured and configurable way. --- src/DigitalData.Auth.API/appsettings.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/DigitalData.Auth.API/appsettings.json b/src/DigitalData.Auth.API/appsettings.json index 1a68077..4cb260d 100644 --- a/src/DigitalData.Auth.API/appsettings.json +++ b/src/DigitalData.Auth.API/appsettings.json @@ -117,5 +117,13 @@ "writeTo": "criticalLogs" } ] + }, + "DbTriggerParams": { + "Envelope": [ "TBSIG_ENVELOPE_AFT_INS" ], + "History": [ "TBSIG_ENVELOPE_HISTORY_AFT_INS" ], + "EmailOut": [ "TBEMLP_EMAIL_OUT_AFT_INS", "TBEMLP_EMAIL_OUT_AFT_UPD" ], + "EnvelopeReceiverReadOnly": [ "TBSIG_ENVELOPE_RECEIVER_READ_ONLY_UPD" ], + "Receiver": [], + "EmailTemplate": [ "TBSIG_EMAIL_TEMPLATE_AFT_UPD" ] } } \ No newline at end of file