From 996a542daa2565963f187d892d889c2a54529ecf Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Tue, 24 Jun 2025 12:43:59 +0530 Subject: [PATCH] changes --- 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 ae279c6a..9c6d4f7a 100644 --- a/src/controllers/installationController.js +++ b/src/controllers/installationController.js @@ -8862,7 +8862,7 @@ exports.assignCategorizeIssue = async (request, reply) => { const { supportId } = request.params; const { support_teamMemberId, category, masterHardwareId } = request.body; - if (!support_teamMemberId || !startDate || !endDate || !category || !masterHardwareId) { + if (!support_teamMemberId || !category || !masterHardwareId) { return reply.code(400).send({ error: 'support_teamMemberId, startDate, endDate, category, and masterHardwareId are required' }); }