nestjs_auth...

This commit is contained in:
최준흠 2022-09-12 15:29:39 +09:00
parent 75f6290ead
commit 0d4e2570fc

View File

@ -21,7 +21,7 @@ export class LocalAuthGuard extends AuthGuard('local') {
if (err || !user) { if (err || !user) {
throw err || new UnauthorizedException() throw err || new UnauthorizedException()
} }
console.log('LocalAuthGuard.handleRequest().info =>' + info) //console.log('LocalAuthGuard.handleRequest().info =>' + info)
return user return user
} }
} }