This commit is contained in:
Benjamin Takats
2023-01-20 20:44:33 +01:00
parent e9f4d6fd15
commit 5973e46415

View File

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