From 7817fcf7904972160daa5e67ac9104f1657de15f Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Wed, 2 Apr 2025 15:25:41 +0530 Subject: [PATCH] user details added in master list --- src/controllers/installationController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/installationController.js b/src/controllers/installationController.js index 4c1e68ad..0bcc6ced 100644 --- a/src/controllers/installationController.js +++ b/src/controllers/installationController.js @@ -811,7 +811,7 @@ exports.mastrerList = async (req, reply) => { return reply.status(404).send({ success: false, message: "No master tanks found" }); } - return reply.send({ success: true, buildingName, data: masterTanks }); + return reply.send({ success: true, buildingName, data: masterTanks,user }); } catch (error) { console.error("Error fetching master tanks:", error);