made the function validateOutsideBank return beneficiary name rather than refNo

Also removed the now redundant checkBeneficiaryName controller and paths
This commit is contained in:
asif
2025-08-09 13:49:25 +05:30
parent 2d39e1e66d
commit 9316a41646
2 changed files with 3 additions and 23 deletions

View File

@@ -6,7 +6,6 @@ const router = express.Router();
router.get('/validate/within-bank', beneficiaryController.validateWithinBank);
router.get('/validate/outside-bank', beneficiaryController.validateOutsideBank);
router.get('/check', beneficiaryController.checkBeneficiaryName);
router.get('/ifsc-details', beneficiaryController.getIfscDetails);
router.get('/get', beneficiaryController.getBeneficiary);
router.post(