reformatted transfer.validator.js

This commit is contained in:
asif
2025-08-09 21:41:04 +05:30
parent 7e0c9d251e
commit 6b6b5679bf

View File

@@ -1,7 +1,7 @@
const transferValidator = async (req, res, next) => {
const { fromAccount, toAccount, toAccountType, amount } = req.body;
const accountTypes = ['SB', 'LN','Savings','Current'];
const accountTypes = ['SB', 'LN', 'Savings', 'Current'];
if (!fromAccount || fromAccount.length != 11) {
return res.status(400).json({ error: 'INVALID_ACCOUNT_NUMBER_FORMAT' });
}