Skip to content

Commit

Permalink
chore(MeetingV2ServiceImpl): 메세지 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Nov 11, 2024
1 parent c045e95 commit 45dfaee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,13 +508,13 @@ private List<UserActivityVO> filterUserActivities(User user, Meeting meeting) {

private void validateMeetingCategoryNotEvent(Meeting meeting) {
if (meeting.getCategory() == MeetingCategory.EVENT) {
throw new BadRequestException(NOT_ALLOW_MEETING_APPLY.getErrorCode());
throw new BadRequestException(NOT_IN_APPLY_PERIOD.getErrorCode());
}
}

private void validateMeetingCategoryEvent(Meeting meeting) {
if (meeting.getCategory() != MeetingCategory.EVENT) {
throw new BadRequestException(NOT_ALLOW_MEETING_APPLY.getErrorCode());
throw new BadRequestException(NOT_IN_APPLY_PERIOD.getErrorCode());
}
}

Expand Down

0 comments on commit 45dfaee

Please sign in to comment.