Skip to content

Commit

Permalink
♻️ Recycle: schedule의 participantCount로 참여자 수 검증하도록 수정
Browse files Browse the repository at this point in the history
<footer>
- 관련: #419
  • Loading branch information
joowojr committed Dec 1, 2024
1 parent 3a62e8c commit fc5d084
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void updateMeetingScheduleProfile(MeetingScheduleRequest.PatchMeetingSche
public String getGuestInvitationUrl(Long scheduleId, SecurityUserDetails memberInfo) {
Schedule schedule = scheduleManageService.getMeetingSchedule(scheduleId);
scheduleManageService.validateAndGetOwnerParticipant(schedule, memberInfo.getUserId());
validateParticipantCount(participantManageService.getScheduleParticipantIds(schedule.getId()).size());
validateParticipantCount(schedule.getParticipantCount());
return guestManageService.generateInvitationUrl(scheduleId);
}

Expand Down

0 comments on commit fc5d084

Please sign in to comment.