Skip to content

Commit

Permalink
fix: response 응답 생성 필드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zzu-yaaa committed Jul 30, 2024
1 parent d0499d1 commit ac69bd0
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,11 @@ public UserSearchResponse searchUsersByGithubId(String githubId) {// 유저 이
Tier tier = user.getTier();

return new UserSearchResponse(
user.getUsername(),
user.getExp(),
user.getRanking(),
user.getGithubId(),
tier.getTierName(),
tier.getCharacterUrl(),
user.getConsecutiveCommitDays(),
user.getTotalCommitCount(),
user.getTodayCommitCount(),
user.getRanking()
user.getExp()
);
}

Expand Down

0 comments on commit ac69bd0

Please sign in to comment.