updates for subscriptions cron

This commit is contained in:
David Bomba 2024-12-01 07:37:00 +11:00
parent 3d20205bd4
commit d4cf147a36
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class Kernel extends ConsoleKernel
$schedule->job(new UpdateExchangeRates())->dailyAt('23:30')->withoutOverlapping()->name('exchange-rate-job')->onOneServer();
/* Runs cleanup code for subscriptions */
$schedule->job(new SubscriptionCron())->dailyAt('00:01')->withoutOverlapping()->name('subscription-job')->onOneServer();
$schedule->job(new SubscriptionCron())->hourlyAt(1)->withoutOverlapping()->name('subscription-job')->onOneServer();
/* Sends recurring expenses*/
$schedule->job(new RecurringExpensesCron())->dailyAt('00:10')->withoutOverlapping()->name('recurring-expense-job')->onOneServer();