implemented RTGS payment feature

This commit is contained in:
asif
2025-08-10 15:29:09 +05:30
parent bfd062be80
commit 2000ec3e4e
4 changed files with 123 additions and 1 deletions

View File

@@ -5,7 +5,8 @@ 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 neftRoute = require('./neft.route');
const rtgsRoute = require('./rtgs.route');
const { npciResponse } = require('../controllers/npci.controller');
const router = express.Router();
@@ -15,6 +16,7 @@ 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('/payment/rtgs', authenticate, rtgsRoute);
router.use('/beneficiary', authenticate, beneficiaryRoute);
router.use('/npci/beneficiary-response', npciResponse);