diff --git a/src/main/java/slvtwn/khu/toyouserver/application/UserService.java b/src/main/java/slvtwn/khu/toyouserver/application/UserService.java index 91f9eba..542b101 100644 --- a/src/main/java/slvtwn/khu/toyouserver/application/UserService.java +++ b/src/main/java/slvtwn/khu/toyouserver/application/UserService.java @@ -94,7 +94,7 @@ private static List generatePeriodicalBirthdayEvents(User user) { for (int yearAfter = 1; yearAfter <= PERIOD_UPPER_BOUND; yearAfter++) { LocalDate birthdayYearAfter = birthday.plus(yearAfter, ChronoUnit.YEARS); - events.add(new Event("생일", birthdayYearAfter, EventType.BIRTHDAY, + events.add(new Event(user.getName(), birthdayYearAfter, EventType.BIRTHDAY, "오늘 생일이에요!", user)); } return events;