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.
This commit is contained in:
@@ -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" ]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user