timi-codes/Banka

View on GitHub
API/controllers/transaction.controller.js

Summary

Maintainability
C
1 day
Test Coverage

Showing 3 of 3 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

static async creditUserAccount(req, res) {
const { amount } = req.body;
const { id } = req.token;
const { accountNumber } = req.params;
 
 
Severity: Major
Found in API/controllers/transaction.controller.js and 1 other location - About 4 hrs to fix
API/controllers/transaction.controller.js on lines 16..27

Similar blocks of code found in 2 locations. Consider refactoring.
Open

static async debitUserAccount(req, res) {
const { amount } = req.body;
const { id } = req.token;
const { accountNumber } = req.params;
 
 
Severity: Major
Found in API/controllers/transaction.controller.js and 1 other location - About 4 hrs to fix
API/controllers/transaction.controller.js on lines 35..46

Similar blocks of code found in 2 locations. Consider refactoring.
Open

static async getTransactions(req, res) {
const { accountNumber } = req.params;
try {
const data = await TransactionService.getAllTransactions(accountNumber);
return response.sendSuccess(res, 200, data, 'Transactions was successfully fetched');
Severity: Major
Found in API/controllers/transaction.controller.js and 1 other location - About 2 hrs to fix
API/controllers/account.controller.js on lines 83..91

There are no issues that match your filters.

Category
Status