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
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

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