Skip to content

Commit

Permalink
refactor - #122 가독성을 위한 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jun 18, 2024
1 parent 00425ac commit d4eb82a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ResponseEntity<BaseResponse<DailyChallengeResponse>> orderGetDailyChallen
return ResponseEntity
.status(ChallengeSuccess.GET_DAILY_CHALLENGE_SUCCESS.getHttpStatus())
.body(BaseResponse.success(ChallengeSuccess.GET_DAILY_CHALLENGE_SUCCESS,
challengeFacade.getDailyChallenge(userId)));
challengeFacade.getDailyChallengeInfo(userId)));
}

@PostMapping("/app")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public ChallengeResponse getCurrentChallengeInfo(Long userId) {
}

@Transactional(readOnly = true)
public DailyChallengeResponse getDailyChallenge(Long userId) {
public DailyChallengeResponse getDailyChallengeInfo(Long userId) {
Challenge challenge = this.findCurrentChallengeByUserId(userId);

return DailyChallengeResponse.builder()
Expand Down

0 comments on commit d4eb82a

Please sign in to comment.