변경 5번째..

This commit is contained in:
최준흠 2022-08-25 21:33:03 +09:00
parent c77808b9fc
commit 5416765360

View File

@ -20,7 +20,10 @@ export class AuthController {
@UseGuards(LocalAuthGuard)
@Post('login')
async login(@Request() req) {
return this.authService.login(req.user)
console.log(req.user)
const response = this.authService.login(req.user)
console.log(response)
return response
}
//Login여부 확인용