Skip to content

Commit

Permalink
Merge pull request #142 from UMC-CommonPlant/feat/#74_Calendar
Browse files Browse the repository at this point in the history
[Chore] Add Log Message in getCalendarByMonth
  • Loading branch information
sonshn authored Aug 28, 2024
2 parents e97e9a0 + bcabe04 commit 979cba5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@ public ResponseEntity<JsonResponse> getCalendarByDate(@RequestParam("year") Stri
return ResponseEntity.ok(new JsonResponse(true, 200, "getCalendarByDate", null));
}

/**
* [GET] 캘린더 조회 (월별)
* @return 월별 캘린더 정보
*/
@GetMapping("/monthly")
public ResponseEntity<JsonResponse> getCalendarByMonth(@RequestParam("year") String year,
@RequestParam("month") String month) {
log.info("[API] getCalendarByMonth - 캘린더 조회 (월별)");

String uuid = jwtService.resolveToken();
User user = userService.getUser(uuid);

Expand Down

0 comments on commit 979cba5

Please sign in to comment.