fix: Move webhooks declaration to correct position

This commit is contained in:
Maksim Eltyshev
2025-07-08 00:22:24 +02:00
parent 4346b7040a
commit 9d07178e57
2 changed files with 4 additions and 4 deletions

View File

@@ -35,6 +35,8 @@ module.exports = {
},
async fn(inputs) {
const webhooks = await Webhook.qm.getAll();
if (inputs.record.id === inputs.card.coverAttachmentId) {
await sails.helpers.cards.updateOne.with({
webhooks,
@@ -67,8 +69,6 @@ module.exports = {
inputs.request,
);
const webhooks = await Webhook.qm.getAll();
sails.helpers.utils.sendWebhooks.with({
webhooks,
event: Webhook.Events.ATTACHMENT_DELETE,