Skip to content

Commit

Permalink
docs: 스웨거 기존과 동일하게 수정 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks authored Aug 25, 2024
1 parent a47cfb6 commit e75f7c1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ ResponseEntity<TempResponseDto<MeetingV2GetAllMeetingDto>> getMeetingsTemp(@Mode

@Operation(summary = "모임 지원자 목록 csv 파일 다운로드", description = "모임 지원자 목록 csv 파일 다운로드")
@Parameters({
@Parameter(name = "status", description = "0: 대기, 1: 승인된 신청자, 2: 거절된 신청자", example = "[0,1]", required = true, schema = @Schema(type = "array[Integer]", format = "array[Integer]")),
@Parameter(name = "type", description = "0: 지원, 1: 초대", example = "[0,1]", required = true, schema = @Schema(type = "array[Integer]", format = "array[Integer]")),
@Parameter(name = "status", description = "0: 대기, 1: 승인된 신청자, 2: 거절된 신청자", example = "0,1", required = true, schema = @Schema(type = "string")),
@Parameter(name = "type", description = "0: 지원, 1: 초대", example = "0,1", required = true, schema = @Schema(type = "string")),
@Parameter(name = "order", description = "정렬순", example = "desc", schema = @Schema(type = "string", format = "string"))})
ResponseEntity<AppliesCsvFileUrlResponseDto> getAppliesCsvFileUrl(
@PathVariable Integer meetingId,
Expand All @@ -136,8 +136,8 @@ ResponseEntity<AppliesCsvFileUrlResponseDto> getAppliesCsvFileUrl(

@Operation(summary = "[TEMP] 모임 지원자 목록 csv 파일 다운로드", description = "모임 지원자 목록 csv 파일 다운로드")
@Parameters({
@Parameter(name = "status", description = "0: 대기, 1: 승인된 신청자, 2: 거절된 신청자", example = "[0,1]", required = true, schema = @Schema(type = "array[Integer]", format = "array[Integer]")),
@Parameter(name = "type", description = "0: 지원, 1: 초대", example = "[0,1]", required = true, schema = @Schema(type = "array[Integer]", format = "array[Integer]")),
@Parameter(name = "status", description = "0: 대기, 1: 승인된 신청자, 2: 거절된 신청자", example = "0,1", required = true, schema = @Schema(type = "string")),
@Parameter(name = "type", description = "0: 지원, 1: 초대", example = "0,1", required = true, schema = @Schema(type = "string")),
@Parameter(name = "order", description = "정렬순", example = "desc", schema = @Schema(type = "string", format = "string"))})
ResponseEntity<TempResponseDto<AppliesCsvFileUrlResponseDto>> getAppliesCsvFileUrlTemp(
@PathVariable Integer meetingId,
Expand Down

0 comments on commit e75f7c1

Please sign in to comment.