Skip to content

Commit

Permalink
docs : userId 파라미터 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lreowy committed Jul 17, 2024
1 parent d1a6899 commit e8991a0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ ApiResponseDto postSubmitter(
@ApiResponse(responseCode = "20024", description = "호스트 승인 신청 내역 조회 성공")
}
)
ApiResponseDto<List<SubmitterListGetResponse>> getSubmitterList();
ApiResponseDto<List<SubmitterListGetResponse>> getSubmitterList(
@Parameter(schema = @Schema(implementation = String.class), in = ParameterIn.PATH)
@UserId final Long userId
);

@Operation(summary = "호스트 신청 승인")
@ApiResponses(
Expand Down

0 comments on commit e8991a0

Please sign in to comment.