Skip to content

Commit 82f20f0

Browse files
committed
refactor(community): community 게시글 조회 컨트롤러 @currentuser 삭제
1 parent 0f7ed47 commit 82f20f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/somemore/community/controller/CommunityBoardQueryApiController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public ApiResponse<Page<CommunityBoardResponseDto>> getAll(
3737
@GetMapping("/community-boards/{writerId}")
3838
@Operation(summary = "작성자별 커뮤니티 게시글 조회", description = "작성자별 커뮤니티 게시글 목록을 조회합니다.")
3939
public ApiResponse<Page<CommunityBoardResponseDto>> getByWriterId(
40-
@PathVariable @CurrentUser UUID writerId,
40+
@PathVariable UUID writerId,
4141
Pageable pageable
4242
) {
4343
return ApiResponse.ok(

0 commit comments

Comments
 (0)