formatted auth route

This commit is contained in:
asif
2025-08-26 19:21:16 +05:30
parent 0d2cea8902
commit 3cfcb8e5bc

View File

@@ -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;