Skip to content

Commit

Permalink
refactor: 엔드포인트 수정 및 잘못된 import 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
RTUnu12 committed Oct 1, 2024
1 parent 7a4e13d commit cb1f645
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public ResponseEntity<ScheduleResponseDto> getGuestSchedule(@PathVariable("meeti
* @param memberId 요청 회원 ID
* @return 회원의 일정 작성 여부
*/
@GetMapping("/check-schedule-write")
@GetMapping("/check")
public ResponseEntity<Boolean> getMemberScheduleWrite(@PathVariable("meetingUuid") String meetingUuid,
@AuthenticationPrincipal Long memberId){
return ResponseEntity.ok(scheduleService.getMemberScheduleWrite(meetingUuid, memberId));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
import java.util.Optional;
import java.util.UUID;

import static org.eclipse.jdt.internal.compiler.problem.ProblemSeverities.Optional;

/**
* 일정 서비스 클래스입니다.
*
Expand Down

0 comments on commit cb1f645

Please sign in to comment.