Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,11 @@ public ApiResponse<CommunityResponseDTO.PostListDTO> getCommunityList(@RequestHe
})
@Parameters({
@Parameter(name = "Authorization", description = "RequestHeader - 로그인한 사용자 토큰"),
@Parameter(name = "category_id", description = "PathVariable - 게시글 카테고리 아이디"),
@Parameter(name = "community_id", description = "PathVariable - 게시글 아이디"),
@Parameter(name = "page", description = "query string(RequestParam) - 몇번째 페이지인지 가리키는 page 변수 입니다! (0부터 시작)"),
@Parameter(name = "size", description = "query string(RequestParam) - 몇 개씩 불러올지 개수를 세는 변수입니다. (1 이상 자연수로 설정)")
})
public ApiResponse<CommunityResponseDTO.PostDetailDTO> getCommunityDetail(@RequestHeader(name = "Authorization") String accessToken,
@PathVariable(name = "category_id") Long categoryId,
@PathVariable(name = "community_id") Long communityId,
@RequestParam(name = "page") Integer page,
@RequestParam(name = "size") Integer size) {
Expand Down
Loading