Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kyung-hwan-kim committed Jan 25, 2024
1 parent 8ce9952 commit 1bbc5e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class ApplicationController {
private final ApplicationFacadeService applicationFacadeService;

@ApiOperation("지원서 목록 조회")
@GetMapping("/generationNumber")
@GetMapping("/list/{generationNumber}")
public ApiResponse<List<ApplicationFormResponse>> getApplications(
@PathVariable Integer generationNumber
){
Expand Down Expand Up @@ -123,7 +123,7 @@ public ApiResponse<ApplicationResponse> updateConfirmation(
}

@ApiOperation("기수 별 스케줄 조회")
@GetMapping("/schedule/{generationNumber")
@GetMapping("/schedule/{generationNumber}")
public ApiResponse<List<RecruitScheduleResponse>> getRecruitSchedule(
@PathVariable Integer generationNumber
){
Expand Down

0 comments on commit 1bbc5e2

Please sign in to comment.