Skip to content

Commit

Permalink
docs: swagger 문서 보완
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyu0218 committed Aug 2, 2024
1 parent cc336e2 commit 7824deb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
public interface MissionVerificationControllerDocs {

@Operation(summary = "미션 인증 현황 조회", description = "해당 일자의 미션 인증 현황을 조회합니다.")
@ApiResponse(responseCode = "200")
@ApiResponses({
@ApiResponse(responseCode = "200"),
@ApiResponse(responseCode = "401", content = @Content(schema = @Schema(hidden = true))),
})
@GetMapping
ResponseEntity<List<MissionVerificationResponse>> getVerifications(
@Parameter(hidden = true) @LoginMemberId final Long memberId,
Expand Down

0 comments on commit 7824deb

Please sign in to comment.