Skip to content

Commit

Permalink
refactor: 스웨거 설명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jj0526 committed Nov 6, 2024
1 parent d9a2d0a commit f9bd98c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
public class FollowController {
private final FollowService followService;

@Operation(summary = "특정 유저의 팔로워 목록 API", description = "특정 유저의 팔로워 목록을 조회합니다.")
@Operation(summary = "특정 유저의 팔로워 목록 조회 API", description = "특정 유저의 팔로워 목록을 조회합니다.")
@GetMapping("/followers")
public ResponseEntity<ApiData<List<FollowDTO.Response>>> getFollowersByTag(@RequestParam String tag){
List<FollowDTO.Response> followers = followService.getFollowers(tag);
return ApiData.ok(followers);
}

@Operation(summary = "특정 유저의 팔로잉 목록 조회 API", description = "특정 유저가 팔로우 중인 대상을 조회합니다.")
@Operation(summary = "특정 유저의 팔로잉 목록 조회 API", description = "특정 유저가 팔로우 중인 목록을 조회합니다.")
@GetMapping("/followings")
public ResponseEntity<ApiData<List<FollowDTO.Response>>> getFollowingsByTag(@RequestParam String tag){
List<FollowDTO.Response> followings = followService.getFollowings(tag);
Expand Down

0 comments on commit f9bd98c

Please sign in to comment.