From 0d9444275fefb7193583544a01feb5e4f6a99447 Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Tue, 24 Jun 2025 13:14:24 +0530 Subject: [PATCH] assignedTo added in fetch by issues category --- src/controllers/installationController.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controllers/installationController.js b/src/controllers/installationController.js index cbaefe1d..c411125d 100644 --- a/src/controllers/installationController.js +++ b/src/controllers/installationController.js @@ -8782,7 +8782,8 @@ exports.particularCategory = async (req, reply) => { movedAt: category !== "Resolved" ? (issue?.movedAt || null) : null, resolvedAt: category === "Resolved" ? (issue?.resolvedAt || null) : null, category: issue?.category || category, - hardwareList: master.hardwareList || {} + hardwareList: master.hardwareList || {}, + assignedTo: issue?.assignedTo || null, }); }