From 2cc1f3fcad98fb9155ecddacfe1d6e899cad7800 Mon Sep 17 00:00:00 2001 From: asif Date: Wed, 29 Oct 2025 15:40:41 +0530 Subject: [PATCH] feat: added details of customer --- src/routes/customer_details.route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/customer_details.route.js b/src/routes/customer_details.route.js index ec17cde..744195c 100644 --- a/src/routes/customer_details.route.js +++ b/src/routes/customer_details.route.js @@ -57,7 +57,7 @@ const limitChangeRoute = async (req, res) => { } }; -router.get('/', customerRoute); +router.get('/details', customerRoute); router.get('/daily-limit', limitRoute); router.post('/daily-limit', limitChangeRoute);