From 499ed507054f5058b50a99f15f34e152fafaaf58 Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Fri, 13 Jun 2025 12:09:38 +0530 Subject: [PATCH] ticketId added in mve to category --- src/controllers/installationController.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/installationController.js b/src/controllers/installationController.js index c4b64924..e902f827 100644 --- a/src/controllers/installationController.js +++ b/src/controllers/installationController.js @@ -8178,6 +8178,7 @@ exports.moveIssueToCategory = async (req, reply) => { hardwareId: issue.hardwareId, masterHardwareId: issue.masterHardwareId || issue.hardwareId, category, + ticketId : issue.ticketId, movedAt: nowTime, movedToCategory: true, }); @@ -8195,6 +8196,7 @@ exports.moveIssueToCategory = async (req, reply) => { masterHardwareId: issue.masterHardwareId || issue.hardwareId, slaveName, category, + ticketId : issue.ticketId, movedAt: nowTime, movedToCategory: true, });