timi-codes/Banka

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

Summary

Maintainability
A
0 mins
Test Coverage

Showing 0 of 2 total issues

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

static async createUser(req, res) {
const user = req.body;
try {
const createdUser = await UserService.createUser(user);
if (createdUser) {
Severity: Major
Found in API/controllers/user.controller.js and 1 other location - About 3 hrs to fix
API/controllers/user.controller.js on lines 36..47

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

static async loginUser(req, res) {
const login = req.body;
try {
const user = await UserService.signUser(login);
if (user) {
Severity: Major
Found in API/controllers/user.controller.js and 1 other location - About 3 hrs to fix
API/controllers/user.controller.js on lines 17..28

There are no issues that match your filters.

Category
Status