Skip to content

Commit

Permalink
refactor(OpenRecruitmentsRetrievalController): 메서드 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
SongJaeHoonn committed Jan 14, 2025
1 parent 691c0e5 commit bc95190
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class OpenRecruitmentsRetrievalController {

@Operation(summary = "현재 모집 중인 모집 공고 목록", description = "ROLE_ANONYMOUS 이상의 권한이 필요함")
@GetMapping("/open")
public ApiResponse<List<RecruitmentOpenResponseDto>> retrieveRecruitmentsByEndDate() {
public ApiResponse<List<RecruitmentOpenResponseDto>> retrieveOpenRecruitments() {
List<RecruitmentOpenResponseDto> recruitments = retrieveOpenRecruitmentsUseCase.retrieveOpenRecruitments();
return ApiResponse.success(recruitments);
}
Expand Down

0 comments on commit bc95190

Please sign in to comment.