Skip to content

Commit

Permalink
[fix]: del test time code
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyeon330 committed Sep 14, 2023
1 parent ba3dab8 commit b006a68
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ public class TabletController {
@GetMapping("reservations/{place}")
public ResponseEntity<TabletDTO> reservations(@PathVariable(name = "place") final String roomName) {
TabletDTO tabletDTO = new TabletDTO(tabletService
.findAllByPlaceAndNowOver(LocalDate.now().withDayOfMonth(15), Rooms.valueOf(roomName).getRoomBit(), ConferenceUtil.getAfterTimeBit(
ConferenceUtil.getTimeIdx(LocalDateTime.now().withHour(10).withMinute(30))
)));
.findAllByPlaceAndNowOver(LocalDate.now().withDayOfMonth(15), Rooms.valueOf(roomName).getRoomBit(), ConferenceUtil.getAfterTimeBit()));
return ResponseEntity.ok(tabletDTO);
}

Expand Down

0 comments on commit b006a68

Please sign in to comment.