Skip to content

Commit 2285114

Browse files
committed
hotfix : whitelist 삭제
1 parent 189bc38 commit 2285114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/ita/tinybite/global/sms/service/SmsAuthService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private void validatePhoneNumber(String phone) {
6060
if(!Pattern.matches("010-\\d{4}-\\d{4}", phone))
6161
throw BusinessException.of(AuthErrorCode.INVALID_PHONE_NUMBER);
6262

63-
if(!WHITELIST.contains(phone))
64-
throw BusinessException.of(AuthErrorCode.INVALID_PHONE_NUMBER);
63+
// if(!WHITELIST.contains(phone))
64+
// throw BusinessException.of(AuthErrorCode.INVALID_PHONE_NUMBER);
6565
}
6666
}

0 commit comments

Comments
 (0)