Skip to content

Commit

Permalink
docs : 행복 달력 상세 조회 파라미터에 설명 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yel-m committed May 16, 2024
1 parent 5570886 commit d9c5f53
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ public DataResponseDto<List<RecordCalendarResponseDto>> getRecordCalenderList(@R
return DataResponseDto.of(responseDtos, "행복 달력을 성공적으로 조회했습니다.");
}

@Operation(summary = "행복 달력 상세 조회", description = "패스 파라미터로 받은 날짜에 해당하는 모든 행복 기록을 조회합니다.")
@Operation(summary = "행복 달력 상세 조회", description = "패스 파라미터로 받은 날짜에 해당하는 모든 행복 기록을 조회합니다.",
parameters = {@Parameter(name="date", description = "format : yyyy-mm-dd")
})
@GetMapping("/calendar/{date}")
public DataResponseDto<List<RecordResponseDto>> getRecordCalenderList(@PathVariable String date, @RequestParam Long userId) {
List<RecordResponseDto> responseDtos = recordCalendarDetailService.getRecords(date, userId);
Expand Down

0 comments on commit d9c5f53

Please sign in to comment.