From 416c58e3d25b8c8794b3c37ce3bb0b43219d5b4a Mon Sep 17 00:00:00 2001 From: seokjin8678 Date: Wed, 29 May 2024 01:44:57 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=B6=95=EC=A0=9C=20=EB=82=A0=EC=A7=9C?= =?UTF-8?q?=20=EA=B2=80=EC=A6=9D=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../festival/application/command/FestivalCreateService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();