const scenarioParser = require("../utils/scenarioParser"); const handleTasksChange = async (req, res) => { const { logger } = req; scenarioParser(req).catch((e) => logger.log("notifications-error", "error", "jsr", null, { error: e?.message })); return res.status(200).json({ message: "Notification Scenario Event Handled." }); }; // module.exports = handleTasksChange;