Set default auto bill time to 12:20

This commit is contained in:
David Bomba 2022-03-10 16:27:15 +11:00
parent e066c8c81f
commit 983d23d797

View File

@ -64,7 +64,7 @@ class Kernel extends ConsoleKernel
$schedule->job(new RecurringExpensesCron)->dailyAt('00:10')->withoutOverlapping();
$schedule->job(new AutoBillCron)->dailyAt('12:00')->withoutOverlapping();
$schedule->job(new AutoBillCron)->dailyAt('12:20')->withoutOverlapping();
$schedule->job(new SchedulerCheck)->daily()->withoutOverlapping();