본인인증 - gender 값 리턴

This commit is contained in:
Klaus 2025-02-03 20:49:29 +09:00
parent bbf3fc04b6
commit 1b782f3df8
1 changed files with 1 additions and 3 deletions

View File

@ -24,10 +24,8 @@ class AuthController(private val service: AuthService) {
if (service.isBlockAuth(authenticateData)) {
service.signOut(member.id!!)
throw SodaException("운영정책을 위반하여 이용을 제한합니다.")
} else {
service.authenticate(authenticateData, member.id!!)
}
ApiResponse.ok(null, null)
ApiResponse.ok(service.authenticate(authenticateData, member.id!!))
}
}