diff --git a/src/main/java/com/leets/team2/xclone/domain/follow/controller/FollowController.java b/src/main/java/com/leets/team2/xclone/domain/follow/controller/FollowController.java index f7de5f3..d045afc 100644 --- a/src/main/java/com/leets/team2/xclone/domain/follow/controller/FollowController.java +++ b/src/main/java/com/leets/team2/xclone/domain/follow/controller/FollowController.java @@ -16,14 +16,14 @@ public class FollowController { private final FollowService followService; - @Operation(summary = "특정 유저의 팔로워 목록 API", description = "특정 유저의 팔로워 목록을 조회합니다.") + @Operation(summary = "특정 유저의 팔로워 목록 조회 API", description = "특정 유저의 팔로워 목록을 조회합니다.") @GetMapping("/followers") public ResponseEntity>> getFollowersByTag(@RequestParam String tag){ List followers = followService.getFollowers(tag); return ApiData.ok(followers); } - @Operation(summary = "특정 유저의 팔로잉 목록 조회 API", description = "특정 유저가 팔로우 중인 대상을 조회합니다.") + @Operation(summary = "특정 유저의 팔로잉 목록 조회 API", description = "특정 유저가 팔로우 중인 목록을 조회합니다.") @GetMapping("/followings") public ResponseEntity>> getFollowingsByTag(@RequestParam String tag){ List followings = followService.getFollowings(tag);