diff --git a/src/main/java/com/leets/xcellentbe/domain/post/controller/PostController.java b/src/main/java/com/leets/xcellentbe/domain/post/controller/PostController.java index a167072..ccb2624 100644 --- a/src/main/java/com/leets/xcellentbe/domain/post/controller/PostController.java +++ b/src/main/java/com/leets/xcellentbe/domain/post/controller/PostController.java @@ -9,7 +9,6 @@ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; -import com.leets.xcellentbe.domain.post.dto.ArticleWithMediaResponseDto; import com.leets.xcellentbe.domain.post.dto.ArticlesResponseDto; import com.leets.xcellentbe.domain.post.service.PostService; import com.leets.xcellentbe.global.response.GlobalResponseDto; @@ -31,11 +30,11 @@ public ResponseEntity>> getArticles( .body(GlobalResponseDto.success(postService.getArticles(customId))); } - @GetMapping("/{customId}/list/media") - @Operation(summary = "특정 사용자의 미디어 게시글 조회", description = "특정 사용자의 미디어 게시글을 조회합니다.") - public ResponseEntity>> getMediaArticles( - @PathVariable String customId) { - return ResponseEntity.status(HttpStatus.OK) - .body(GlobalResponseDto.success(postService.getMediaArticles(customId))); - } + // @GetMapping("/{customId}/list/media") + // @Operation(summary = "특정 사용자의 미디어 게시글 조회", description = "특정 사용자의 미디어 게시글을 조회합니다.") + // public ResponseEntity>> getMediaArticles( + // @PathVariable String customId) { + // return ResponseEntity.status(HttpStatus.OK) + // .body(GlobalResponseDto.success(postService.getMediaArticles(customId))); + // } }