Skip to content

Commit

Permalink
fix (#3) : API 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daehwan2yo committed Apr 11, 2022
1 parent b3bd54f commit 6318048
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public ResponseEntity<CalendarResponse> getMyCalenderResponse(@LoginAccount Acco
.build());
}

@GetMapping(value = "/calendar/{userId}/comments", produces = APPLICATION_JSON_VALUE)
@GetMapping(value = "/calendar/{userId}/result", produces = APPLICATION_JSON_VALUE)
public ResponseEntity<CalendarResponse> getOtherCalendarResponse(@PathVariable("userId") Long userId) {
Account account = accountService.findAccount(userId);
Calendar calendar = calendarService.find(account);
Expand Down

0 comments on commit 6318048

Please sign in to comment.