From 247df5fed3579b0fa155ddcc2c832607a54a900c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= <72651575+BreizhHardware@users.noreply.github.com> Date: Mon, 26 May 2025 10:11:51 +0200 Subject: [PATCH] Update backend/routes/webhooks.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- backend/routes/webhooks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/webhooks.js b/backend/routes/webhooks.js index 80095f6..b2c1fb0 100644 --- a/backend/routes/webhooks.js +++ b/backend/routes/webhooks.js @@ -316,7 +316,7 @@ router.post('/:id/trigger-monthly', async (req, res) => { const success = await webhookManager.triggerMonthlySummaryWebhook(req.params.id); if (success) { - res.status(200).json({ message: "Monthly report send with success" }); + res.status(200).json({ message: "Monthly report sent successfully" }); } else { res.status(500).json({ message: "Failed to send monthly report" }); }