be
This commit is contained in:
4
backend/dist/auth/auth.controller.js
vendored
4
backend/dist/auth/auth.controller.js
vendored
@@ -23,10 +23,10 @@ let AuthController = class AuthController {
|
||||
this.authService = authService;
|
||||
}
|
||||
async signup(dto) {
|
||||
return this.authService.signup(dto);
|
||||
return await this.authService.signup(dto);
|
||||
}
|
||||
async login(dto) {
|
||||
return this.authService.login(dto);
|
||||
return await this.authService.login(dto);
|
||||
}
|
||||
};
|
||||
exports.AuthController = AuthController;
|
||||
|
Reference in New Issue
Block a user