Skip to content

Commit

Permalink
[hotfix] fix: 팔로잉 팔로워 api 거꾸로 된 것 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
elive7 committed Jan 8, 2025
1 parent 0ada6f6 commit 67d859a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ResponseEntity<Boolean> subscribe(
}

@Override
@GetMapping("/following")
@GetMapping("/follower")
public ResponseEntity<CursorBasePaginatedResponse<UserInfo>> getSubscribedUserInfos(
@UserId Long userId,
@RequestParam(required = false) Long cursorId,
Expand All @@ -69,7 +69,7 @@ public ResponseEntity<CursorBasePaginatedResponse<UserInfo>> getSubscribedUserIn
}

@Override
@GetMapping("/follower")
@GetMapping("/following")
public ResponseEntity<CursorBasePaginatedResponse<UserInfo>> getSubscribingUserInfos(
@UserId Long userId,
@RequestParam(required = false) Long cursorId,
Expand Down

0 comments on commit 67d859a

Please sign in to comment.