From 40209ed7a4d447d0caac8c13e237046fcb5ac3ad Mon Sep 17 00:00:00 2001 From: daeng Date: Fri, 2 Feb 2024 01:50:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20api=20url=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/ReviewZIP/domain/post/PostsController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/ReviewZIP/domain/post/PostsController.java b/src/main/java/com/example/ReviewZIP/domain/post/PostsController.java index 8258b9db..e8f2399f 100644 --- a/src/main/java/com/example/ReviewZIP/domain/post/PostsController.java +++ b/src/main/java/com/example/ReviewZIP/domain/post/PostsController.java @@ -29,7 +29,7 @@ public class PostsController { private final PostsService postsService; - @GetMapping("/{hashtagId}") + @GetMapping("/hashtags/{hashtagId}") @Operation(summary = "해시태그 아이디로 게시글을 찾는 API",description = "해시태그 아이디로 게시글을 찾는 기능, 반환 시 PostPreviewListDto, PostPreviewDto 사용") @ApiResponses({ @io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "COMMON200",description = "OK, 성공"),