diff --git a/src/main/java/treehouse/server/api/comment/presentation/CommentApi.java b/src/main/java/treehouse/server/api/comment/presentation/CommentApi.java index eee6b8e..de30bde 100644 --- a/src/main/java/treehouse/server/api/comment/presentation/CommentApi.java +++ b/src/main/java/treehouse/server/api/comment/presentation/CommentApi.java @@ -37,7 +37,7 @@ public CommonResponse reportComment( return CommonResponse.onSuccess(null); } - @Operation(summary = "댓글 목록 조회 API 🔑", description = "댓글 목록을 조회하는 API 입니다.") + @Operation(summary = "댓글 목록 조회 API 🔑 ✅", description = "댓글 목록을 조회하는 API 입니다.") @GetMapping() public CommonResponse getComments( @PathVariable(name = "treehouseId") Long treehouseId, @@ -50,7 +50,7 @@ public CommonResponse getComments( } @PostMapping("") - @Operation(summary = "댓글 작성 API 🔑", description = "특정 Post에 대해서 댓글을 작성하는 API 입니다.") + @Operation(summary = "댓글 작성 API 🔑 ✅", description = "특정 Post에 대해서 댓글을 작성하는 API 입니다.") public CommonResponse createComment( @PathVariable(name = "treehouseId")Long treehouseId, @PathVariable(name = "postId")Long postId, @@ -62,7 +62,7 @@ public CommonResponse createComment( } @PostMapping("/{commentId}") - @Operation(summary = "대댓글 작성 API 🔑", description = "특정 Comment에 대해서 대댓글을 작성하는 API 입니다.") + @Operation(summary = "대댓글 작성 API 🔑 ✅", description = "특정 Comment에 대해서 대댓글을 작성하는 API 입니다.") public CommonResponse createReply( @PathVariable(name = "treehouseId")Long treehouseId, @PathVariable(name = "postId")Long postId, @@ -75,7 +75,7 @@ public CommonResponse createReply( } @DeleteMapping("/{commentId}") - @Operation(summary = "댓글 삭제 API 🔑", description = "댓글을 삭제하는 API 입니다.") + @Operation(summary = "댓글 삭제 API 🔑 ✅", description = "댓글을 삭제하는 API 입니다.") public CommonResponse deleteComment( @PathVariable(name = "treehouseId")Long treehouseId, @PathVariable(name = "postId")Long postId, @@ -88,7 +88,7 @@ public CommonResponse deleteComment( } @PostMapping("/{commentId}/reactions") - @Operation(summary = "댓글 반응 API 🔑", description = "댓글에 감정표현을 남기는 API 입니다.") + @Operation(summary = "댓글 반응 API 🔑 ✅", description = "댓글에 감정표현을 남기는 API 입니다.") public CommonResponse reactToComment( @PathVariable(name = "treehouseId")Long treehouseId, @PathVariable(name = "postId")Long postId, diff --git a/src/main/java/treehouse/server/api/member/presentation/MemberApi.java b/src/main/java/treehouse/server/api/member/presentation/MemberApi.java index 9f789c5..fa1cc16 100644 --- a/src/main/java/treehouse/server/api/member/presentation/MemberApi.java +++ b/src/main/java/treehouse/server/api/member/presentation/MemberApi.java @@ -27,7 +27,7 @@ public class MemberApi { private final PostService postService; @PostMapping("/members/register") - @Operation(summary = "트리하우스 회원가입 \uD83D\uDD11✅", description = "트리하우스 멤버로 가입합니다.") + @Operation(summary = "트리하우스 회원가입 \uD83D\uDD11 🔑 ✅", description = "트리하우스 멤버로 가입합니다.") public CommonResponse registerTreehouseMember( @RequestBody final MemberRequestDTO.registerMember request, @AuthMember @Parameter(hidden = true) User user @@ -36,7 +36,7 @@ public CommonResponse registerTreehouseMember( } @GetMapping("/treehouses/{treehouseId}/profiles/myProfile") - @Operation(summary = "내 프로필 조회 \uD83D\uDC64 ✅", description = "특정 트리하우스에서 내 프로필을 조회합니다.") + @Operation(summary = "내 프로필 조회 \uD83D\uDC64 🔑 ✅", description = "특정 트리하우스에서 내 프로필을 조회합니다.") public CommonResponse getMyProfile( @PathVariable final Long treehouseId, @AuthMember @Parameter(hidden = true) User user @@ -45,7 +45,7 @@ public CommonResponse getMyProfile( } @GetMapping("/treehouses/{treehouseId}/profiles/{memberId}") - @Operation(summary = "멤버 프로필 조회 \uD83D\uDC64 ✅", description = "특정 트리하우스에서 특정 멤버의 프로필을 조회합니다.") + @Operation(summary = "멤버 프로필 조회 \uD83D\uDC64 🔑 ✅", description = "특정 트리하우스에서 특정 멤버의 프로필을 조회합니다.") public CommonResponse getMemberProfile( @PathVariable(name = "treehouseId") Long treehouseId, @PathVariable(name = "memberId") Long memberId, @@ -56,7 +56,7 @@ public CommonResponse getMemberProfile( @PatchMapping("/treehouses/{treehouseId}/profiles/myProfile") - @Operation(summary = "내 프로필 수정 \uD83D\uDC64 ✅", description = "특정 트리하우스에서 내 프로필을 수정합니다.") + @Operation(summary = "내 프로필 수정 \uD83D\uDC64 🔑 ✅", description = "특정 트리하우스에서 내 프로필을 수정합니다.") public CommonResponse updateProfile( @PathVariable final Long treehouseId, @RequestBody final MemberRequestDTO.updateProfile request, @@ -66,7 +66,7 @@ public CommonResponse updateProfile( } @GetMapping("/treehouses/{treehouseId}/profiles/{memberId}/posts") - @Operation(summary = "멤버가 작성한 게시글 조회 \uD83D\uDC64 ✅", description = "특정 트리하우스에서 특정 멤버가 작성한 게시글 목록을 조회합니다.") + @Operation(summary = "멤버가 작성한 게시글 조회 \uD83D\uDC64 🔑 ✅", description = "특정 트리하우스에서 특정 멤버가 작성한 게시글 목록을 조회합니다.") public CommonResponse getPosts( @PathVariable(name = "treehouseId") Long treehouseId, @PathVariable(name = "memberId") Long memberId, diff --git a/src/main/java/treehouse/server/api/notification/presentation/NotificationApi.java b/src/main/java/treehouse/server/api/notification/presentation/NotificationApi.java index 0bb81d7..59bb3de 100644 --- a/src/main/java/treehouse/server/api/notification/presentation/NotificationApi.java +++ b/src/main/java/treehouse/server/api/notification/presentation/NotificationApi.java @@ -24,7 +24,7 @@ public class NotificationApi { private final NotificationService notificationService; @GetMapping("/users/notifications") - @Operation(summary = "알림 조회 \uD83D\uDD11✅", description = "사용자의 알림을 조회합니다.") + @Operation(summary = "알림 조회 \uD83D\uDD11🔑 ✅", description = "사용자의 알림을 조회합니다.") public CommonResponse getNotifications( @AuthMember @Parameter(hidden = true) User user ){ diff --git a/src/main/java/treehouse/server/api/post/presentation/PostApi.java b/src/main/java/treehouse/server/api/post/presentation/PostApi.java index 7ca2189..551057b 100644 --- a/src/main/java/treehouse/server/api/post/presentation/PostApi.java +++ b/src/main/java/treehouse/server/api/post/presentation/PostApi.java @@ -28,7 +28,7 @@ public class PostApi { private final PostService postService; @GetMapping("/posts/{postId}") - @Operation(summary = "게시글 상세조회 \uD83D\uDD11✅, 🔑", description = "특정 게시글의 상세정보를 조회합니다.") + @Operation(summary = "게시글 상세조회 \uD83D\uDD11🔑 ✅", description = "특정 게시글의 상세정보를 조회합니다.") public CommonResponse getPostDetails( @PathVariable Long treehouseId, @PathVariable Long postId, @@ -38,7 +38,7 @@ public CommonResponse getPostDetails( } @PostMapping("/posts") - @Operation(summary = "게시글 작성 \uD83D\uDD11✅ 🔑", description = "게시글 작성 API 입니다.") + @Operation(summary = "게시글 작성 \uD83D\uDD11🔑 ✅", description = "게시글 작성 API 입니다.") public CommonResponse createPost( @PathVariable(name = "treehouseId") Long treehouseId, @RequestBody @Valid PostRequestDTO.createPost request, @@ -48,7 +48,7 @@ public CommonResponse createPost( } @PostMapping("/posts/images") - @Operation(summary = "presigned Url 발급 API \uD83D\uDD11✅ 🔑", description = "사진 업로드를 위한 presigned Url을 발급받는 API 입니다.") + @Operation(summary = "presigned Url 발급 API \uD83D\uDD11🔑 ✅", description = "사진 업로드를 위한 presigned Url을 발급받는 API 입니다.") public CommonResponse createPresignedUrl( @PathVariable(name = "treehouseId") Long treehouseId, @RequestBody @Valid PostRequestDTO.uploadFile request, @@ -58,7 +58,7 @@ public CommonResponse createPresignedU return CommonResponse.onSuccess(postService.createPresignedUrl(request)); } @GetMapping - @Operation(summary = "게시글 목록 조회 🔑", description = "트리하우스의 게시글 목록을 조회합니다.") + @Operation(summary = "게시글 목록 조회 🔑 ✅", description = "트리하우스의 게시글 목록을 조회합니다.") public CommonResponse> getPosts( @PathVariable Long treehouseId, @RequestParam(defaultValue = "0") int page, @@ -68,7 +68,7 @@ public CommonResponse> getPosts( } @PatchMapping("/posts/{postId}") - @Operation(summary = "게시글 수정 ✅ 🔑", description = "게시글을 수정합니다(이미지는 수정불가)") + @Operation(summary = "게시글 수정 🔑 ✅", description = "게시글을 수정합니다(이미지는 수정불가)") public CommonResponse updatePost( @PathVariable Long treehouseId, @PathVariable Long postId, @@ -79,7 +79,7 @@ public CommonResponse updatePost( } @DeleteMapping("/posts/{postId}") - @Operation(summary = "게시글 삭제 ✅ 🔑", description = "게시글을 삭제합니다.") + @Operation(summary = "게시글 삭제 🔑 ✅", description = "게시글을 삭제합니다.") public CommonResponse deletePost( @PathVariable Long treehouseId, @PathVariable Long postId, @@ -91,7 +91,7 @@ public CommonResponse deletePost( @PostMapping("/posts/{postId}/reports") - @Operation(summary = "게시글 신고 ✅ 🔑", description = "게시글을 신고합니다.") + @Operation(summary = "게시글 신고 🔑 ✅", description = "게시글을 신고합니다.") public CommonResponse reportPost( @PathVariable(name = "treehouseId") Long treehouseId, @PathVariable(name = "postId") Long postId, @@ -103,7 +103,7 @@ public CommonResponse reportPost( } @PostMapping("/posts/{postId}/reactions") - @Operation(summary = "게시글 반응 ✅ 🔑", description = "게시글에 감정표현을 남깁니다.") + @Operation(summary = "게시글 반응 🔑 ✅", description = "게시글에 감정표현을 남깁니다.") public CommonResponse reactToPost( @PathVariable(name = "treehouseId") Long treehouseId, @PathVariable(name = "postId") Long postId,