formatted auth route

This commit is contained in:
asif
2025-08-26 19:21:16 +05:30
committed by asif
parent 6e6690746a
commit bb446f41d8

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;