This commit is contained in:
2025-09-09 11:10:46 +05:30
11 changed files with 127 additions and 7 deletions

View File

@@ -13,6 +13,7 @@ const impsRoute = async (req, res) => {
try {
const result = await impsController.send(
req.user,
fromAccount,
toAccount,
amount,

View File

@@ -19,6 +19,7 @@ const neftRoute = async (req, res) => {
try {
const result = await neftController.send(
req.user,
fromAccount,
toAccount,
amount,

View File

@@ -19,6 +19,7 @@ const rtgsRoute = async (req, res) => {
try {
const result = await rtgsController.send(
req.user,
fromAccount,
toAccount,
amount,

View File

@@ -14,7 +14,8 @@ const transferRoute = async (req, res) => {
fromAccount,
toAccount,
toAccountType,
amount
amount,
req.user
);
if (result.status === 'O.K.') {