implemented quick pay within bank

This commit is contained in:
2025-06-25 23:46:17 +05:30
parent d813784305
commit e3bd1657c0
14 changed files with 262 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ function auth(req, res, next) {
try {
const payload = verifyToken(token);
req.user = payload;
req.user = payload.customerNo;
next();
} catch (err) {
logger.error(err, 'error verifying token');