본인인증 : block 된 사용자 정보로 본인인증을 시도하는 경우

- 본인인증 시도 계정 탈퇴 처리
This commit is contained in:
Klaus 2023-11-09 17:32:10 +09:00
parent 6bc5143471
commit 75140a4055
1 changed files with 4 additions and 1 deletions

View File

@ -57,7 +57,10 @@ class AuthService(
val certificateYear = certificate.birth.substring(0, 4).toInt()
if (isBlockAuth(certificate)) {
signOut(memberId = memberId)
try {
signOut(memberId = memberId)
} catch (_: Exception) {
}
throw SodaException(blockMessage)
}