File tree Expand file tree Collapse file tree
src/main/java/ceos/backend/domain/application/service Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737import org .springframework .transaction .annotation .Transactional ;
3838
3939import static ceos .backend .domain .application .domain .AvailableCheck .AVAILABLE ;
40+ import static ceos .backend .domain .application .domain .AvailableCheck .UNAVAILABLE ;
4041
4142@ Service
4243@ RequiredArgsConstructor
@@ -161,6 +162,7 @@ public void updateInterviewAttendance(
161162 if (request .getAvailable () == AVAILABLE ) {
162163 application .updateInterviewCheck (AVAILABLE );
163164 } else {
165+ application .updateInterviewCheck (UNAVAILABLE );
164166 application .updateUnableReason (request .getReason ());
165167 applicationHelper .sendSlackUnableReasonMessage (application , request , false );
166168 }
@@ -190,6 +192,7 @@ public void updateParticipationAvailability(
190192 if (request .getAvailable () == AVAILABLE ) {
191193 application .updateFinalCheck (AVAILABLE );
192194 } else {
195+ application .updateFinalCheck (UNAVAILABLE );
193196 application .updateUnableReason (request .getReason ());
194197 applicationHelper .sendSlackUnableReasonMessage (application , request , true );
195198 }
You can’t perform that action at this time.
0 commit comments