From c150a8283d345191f5eaf6ff2ae4512023e24b4c Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Fri, 7 Mar 2025 15:36:44 +0530 Subject: [PATCH] changes --- src/controllers/tanksController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/tanksController.js b/src/controllers/tanksController.js index 8533bd0a..7f1b941b 100644 --- a/src/controllers/tanksController.js +++ b/src/controllers/tanksController.js @@ -1735,7 +1735,7 @@ eventEmitter.on("sendMotorStartNotification", async (hw_Id, customerId, fcmToken // ? `🚨 Pump will stop when the water level reaches **${manualThresholdTime}%**.` // : `⚠️ Pump will stop **manually**.`; - const message = `🚰 Motor Started Manually 🚀\n` + + const message = `🚰 Motor Started 🚀\n` + `👤 Customer ID: ${customerId}\n` + `🔹 Motor Name: ${tankName} - ${blockName}\n` + `💧 Water Level: ${waterLevel}\n` + @@ -1766,7 +1766,7 @@ eventEmitter.on("sendMotorStopNotification", async (hw_Id, customerId, fcmTokens return; } - const message = `🛑 Motor Stopped Manually ❌\n` + + const message = `🛑 Motor Stopped ❌\n` + `👤 Customer ID: ${customerId}\n` + `🔹 Motor Name: ${tankName} - ${blockName}\n` + `💧 Water Level: ${waterLevel}\n` +