feat: MemberService에 id로 존재 여부 확인 로직 추가

This commit is contained in:
이상진 2025-07-13 20:34:31 +09:00
parent f3cc46d8de
commit 484bd9da04

View File

@ -36,5 +36,8 @@ class MemberService(
String.format("[email: %s, password: %s]", email, password),
HttpStatus.BAD_REQUEST
)
fun existsById(memberId: Long): Boolean = memberRepository.existsById(memberId)
}