$schedule->call

This commit is contained in:
Benjamin Takats
2023-01-19 00:05:29 +01:00
parent ecf3aa3e94
commit be2e1fd355

View File

@@ -21,9 +21,9 @@ class Kernel extends ConsoleKernel
{ {
$schedule->call(new PruneStaleAttachments) $schedule->call(new PruneStaleAttachments)
->daily(); ->daily();
$schedule->call(SyncOpenBooks::class) $schedule->call('books:sync')
->dailyAt('23:00'); ->dailyAt('23:00');
$schedule->call(ReadAndSyncPodcastFeeds::class) $schedule->call('feed:sync')
->dailyAt('23:30'); ->dailyAt('23:30');
} }