diff --git a/backend/src/main/java/com/festago/festival/application/command/FestivalCreateService.java b/backend/src/main/java/com/festago/festival/application/command/FestivalCreateService.java index 45e0255c4..1e8e245ec 100644 --- a/backend/src/main/java/com/festago/festival/application/command/FestivalCreateService.java +++ b/backend/src/main/java/com/festago/festival/application/command/FestivalCreateService.java @@ -28,7 +28,7 @@ public class FestivalCreateService { public Long createFestival(FestivalCreateCommand command) { School school = schoolRepository.getOrThrow(command.schoolId()); Festival festival = command.toEntity(school); - validate(festival); +// validate(festival); festivalRepository.save(festival); eventPublisher.publishEvent(new FestivalCreatedEvent(festival)); return festival.getId();