From bb446f41d82f5e3ce1c81e0d560c4d61a64a5acc Mon Sep 17 00:00:00 2001 From: asif Date: Tue, 26 Aug 2025 19:21:16 +0530 Subject: [PATCH] formatted auth route --- src/routes/auth.route.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/routes/auth.route.js b/src/routes/auth.route.js index ac8c9fb..2ab5178 100644 --- a/src/routes/auth.route.js +++ b/src/routes/auth.route.js @@ -9,6 +9,10 @@ router.get('/user_details', authenticate, authController.fetchUserDetails); router.get('/tpin', authenticate, authController.tpin); router.post('/tpin', authenticate, authController.setTpin); router.post('/login_password', authenticate, authController.setLoginPassword); -router.post('/transaction_password', authenticate, authController.setTransactionPassword); +router.post( + '/transaction_password', + authenticate, + authController.setTransactionPassword +); module.exports = router;