This commit is contained in:
2025-07-16 16:25:16 +09:00
parent 11af12a806
commit 8135650344
34 changed files with 301 additions and 41 deletions

View File

@@ -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;