Skip to content

Commit

Permalink
[modify] 매주 월요일에 솝마디 알림이 가도록 변경 (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jan 1, 2025
1 parent 7cdb49d commit bafd4bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class FortuneScheduler {
private final UserService userService;
private final FortuneNotificationSender fortuneNotificationSender;

@Scheduled(cron = "0 0 9 * * ?")
@Scheduled(cron = "0 0 9 ? * MON")
public void runDailyFortuneCreation() {
List<Long> playgroundIds = userService.getAllPlaygroundIds();
fortuneNotificationSender.sendFortuneNotification(playgroundIds);
Expand Down

0 comments on commit bafd4bf

Please sign in to comment.