Skip to content

Commit

Permalink
Merge pull request #69 from 1223v/test
Browse files Browse the repository at this point in the history
Fix: 아이디 찾기 API res boolean 값 수정
  • Loading branch information
1223v authored Mar 7, 2024
2 parents 486a07f + 44981e4 commit a7d6809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public CeoFindEmailRes findCeoEmail(String phoneNumber) {
}
String ceoInfoEmail = ceoServiceFacade.findCeoEmailByPhone(phoneNumber);
return CeoFindEmailRes.builder()
.success(false)
.success(true)
.message("아이디 " + ceoInfoEmail)
.build();
}
Expand Down

0 comments on commit a7d6809

Please sign in to comment.