Skip to content

Commit

Permalink
refactor: 컨벤션에 맞게 컨트롤러 메서드 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghye218 committed Aug 1, 2024
1 parent 4bc28ec commit 18391aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ConfirmScheduleService {
private final ConfirmedScheduleRepository confirmedScheduleRepository;

@Transactional
public void confirmSchedule(String uuid, long attendeeId, ScheduleConfirmRequest request) {
public void create(String uuid, long attendeeId, ScheduleConfirmRequest request) {
Meeting meeting = meetingRepository.findByUuid(uuid)
.orElseThrow(() -> new MomoException(MeetingErrorCode.INVALID_UUID));

Expand Down

0 comments on commit 18391aa

Please sign in to comment.