Fixed typo in console kernel

This commit is contained in:
Constantin Graf
2024-10-11 13:10:09 +02:00
parent c291170d79
commit 2b1da883fb

View File

@@ -18,11 +18,11 @@ class Kernel extends ConsoleKernel
->when(fn (): bool => config('scheduling.tasks.time_entry_send_still_running_mails'))
->everyTenMinutes();
$schedule->command('self-hosting:check-for-update')
$schedule->command('self-host:check-for-update')
->when(fn (): bool => config('scheduling.tasks.self_hosting_check_for_update'))
->twiceDaily();
$schedule->command('self-hosting:telemetry')
$schedule->command('self-host:telemetry')
->when(fn (): bool => config('scheduling.tasks.self_hosting_telemetry'))
->twiceDaily();
}