implemented neft transaction feature

This commit is contained in:
asif
2025-08-10 15:17:44 +05:30
parent 6f07e9beb9
commit 33ef65de32
3 changed files with 88 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ const transactionRoute = require('./transactions.route');
const authenticate = require('../middlewares/auth.middleware');
const transferRoute = require('./transfer.route');
const beneficiaryRoute = require('./beneficiary.route');
const neftRoute = require('./neft.route.js');
const { npciResponse } = require('../controllers/npci.controller');
const router = express.Router();
@@ -13,6 +14,7 @@ router.use('/auth', authRoute);
router.use('/customer', authenticate, detailsRoute);
router.use('/transactions/account/:accountNo', authenticate, transactionRoute);
router.use('/payment/transfer', authenticate, transferRoute);
router.use('/payment/neft', authenticate, neftRoute);
router.use('/beneficiary', authenticate, beneficiaryRoute);
router.use('/npci/beneficiary-response', npciResponse);