From 924e72ecedd05885dc742ba552b240fccecbc880 Mon Sep 17 00:00:00 2001 From: "Dr. Alwin Simon" <003alwin@gmail.com> Date: Tue, 23 Jul 2024 20:49:13 +0530 Subject: [PATCH] Minor fix in health route response. --- app/controllers/adminController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/adminController.js b/app/controllers/adminController.js index 0f7e7dd..3c72d7d 100644 --- a/app/controllers/adminController.js +++ b/app/controllers/adminController.js @@ -26,7 +26,7 @@ const healthStatusGET = (req, res) => { const formattedDate = currentDate.toLocaleString("en-US", options); res.status(200).json({ - status: `${process.env.APPLICATION_NAME} and Systems are Up & Running.`, + status: `${process.env.PLATFORM_NAME} Server and Systems are Up & Running.`, dateTime: formattedDate, });