feat: api for branch and atm

This commit is contained in:
2025-11-14 11:42:09 +05:30
parent 759869b0e3
commit a8a576f5c1
3 changed files with 41 additions and 1 deletions

View File

@@ -9,6 +9,8 @@ const beneficiaryRoute = require('./beneficiary.route');
const neftRoute = require('./neft.route');
const rtgsRoute = require('./rtgs.route');
const impsRoute = require('./imps.route');
const branchRoute = require('./branch.route');
const atmRoute = require('./atm.route');
const { npciResponse } = require('../controllers/npci.controller');
const otp = require('./otp.route');
const eMandate = require('./emandate.route');
@@ -25,6 +27,8 @@ router.use('/payment/imps', authenticate, impsRoute);
router.use('/beneficiary', authenticate, beneficiaryRoute);
router.use('/npci/beneficiary-response', npciResponse);
router.use('/otp', otp);
router.use('/e-mandate',authenticate,eMandate);
router.use('/e-mandate', authenticate, eMandate);
router.use('/branch', authenticate, branchRoute);
router.use('/atm', authenticate, atmRoute);
module.exports = router;