Skip to content

Commit

Permalink
fix: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
middlefitting committed Apr 5, 2024
1 parent 9c824f8 commit d17abe4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.time.LocalDateTime;
import java.util.List;

import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Slice;
import org.springframework.stereotype.Service;
Expand Down Expand Up @@ -183,8 +184,6 @@ public List<Application> getRecruitmentApplicants(Long recruitId) {
.findAllByRecruitmentIdWithUserAndRecruitStatusFetchJoinOrderByIdDesc(recruitId);
}

public void getRecruitmentApplications(GetRecruitmentApplicationsDto dto) {

public Page<Application> findApplicationsWithAnswersAndUserWithFilter(GetRecruitmentApplicationsDto dto) {
Long recruitId = dto.getRecruitId();
Long questionId = dto.getQuestionId();
Expand All @@ -200,4 +199,5 @@ public Page<Application> findApplicationsWithAnswersAndUserWithFilter(GetRecruit
return applicationAdminRepository.findByRecruitIdAndIsDeletedFalseOrderByIdDesc(recruitId, pageable);
}
}

}

0 comments on commit d17abe4

Please sign in to comment.