fix: process watchlists every day

This commit is contained in:
Maël Gangloff
2024-08-10 15:44:16 +02:00
parent 81fa459c6c
commit 880d5b4575

View File

@@ -21,7 +21,7 @@ final readonly class SendNotifWatchListTriggerSchedule implements ScheduleProvid
{
return (new Schedule())
->add(
RecurringMessage::every('1 week', new ProcessWatchListsTrigger()),
RecurringMessage::every('1 day', new ProcessWatchListsTrigger()),
)
->stateful($this->cache);
}