We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b778c commit c0bad28Copy full SHA for c0bad28
src/main/java/Ness/Backend/domain/schedule/ScheduleController.java
@@ -25,7 +25,7 @@ public ResponseEntity<GetOneMonthSchedulesDto> getUserSchedule(@RequestParam Str
25
return new ResponseEntity<>(oneUserMonthSchedules, HttpStatusCode.valueOf(200));
26
}
27
28
- @PutMapping("/new/dev")
+ @PostMapping("/new/dev")
29
@Operation(summary = "개발 테스트용 새로운 스케쥴 내역", description = "새로운 스케쥴 내역 저장하는 API 입니다.")
30
public ResponseEntity<Long> postUserSchedule(@RequestBody PostScheduleDto postScheduleDto){
31
Long userId = scheduleService.postNewUserSchedule(1L, postScheduleDto);
0 commit comments