Skip to content

Commit 272bd01

Browse files
committed
fix: ApplicantServiceImpl의 sendEmailsToApplicants 메소드 ApplicantStatus 수정 완료
1 parent 64e7268 commit 272bd01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/dmu/dasom/api/domain/applicant/service/ApplicantServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void sendEmailsToApplicants(MailType mailType) {
9393
break;
9494
case FINAL_RESULT:
9595
applicants = applicantRepository.findByStatusIn(
96-
List.of(ApplicantStatus.INTERVIEW_PASSED,
96+
List.of(ApplicantStatus.INTERVIEW_FAILED,
9797
ApplicantStatus.INTERVIEW_PASSED)
9898
);
9999
break;

0 commit comments

Comments
 (0)