Skip to content

Commit

Permalink
feat: 축제 날짜 검증 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 committed May 28, 2024
1 parent 6ad985f commit 416c58e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 416c58e

Please sign in to comment.