Skip to content

Commit

Permalink
🐛 Fix: uri path 오타 수정
Browse files Browse the repository at this point in the history
<footer>
- #347
  • Loading branch information
joowojr committed Oct 1, 2024
1 parent 3619342 commit 79f9878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public ResponseDto<List<DiaryResponse.DiaryArchiveDto>> getDiaryArchive(
INVALID_FORMAT_FAILURE,
})
@GetMapping("/calendar/{yearMonth}")
public ResponseDto<DiaryResponse.DiaryExistDateDto> getArchiveCalender(
public ResponseDto<DiaryResponse.DiaryExistDateDto> getArchiveCalendar(
@AuthenticationPrincipal SecurityUserDetails memberInfo,
@Parameter(description = "조회할 달력의 년도-월 입니다.", example = "2024-08")
@PathVariable String yearMonth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public ResponseDto<List<MeetingScheduleResponse.GetMonthlyMembersScheduleDto>> g
NOT_FOUND_SCHEDULE_FAILURE,
NOT_MEETING_SCHEDULE,
})
@GetMapping(path = "/{meetingScheduleId}/calender")
@GetMapping(path = "/{meetingScheduleId}/calendar")
public ResponseDto<List<MeetingScheduleResponse.GetMonthlyMeetingParticipantScheduleDto>> getMonthlyMeetingParticipantSchedules(
@PathVariable Long meetingScheduleId,
@Parameter(description = "yyyy-mm-dd 형식으로 입력합니다.") @RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate startDate,
Expand Down

0 comments on commit 79f9878

Please sign in to comment.