diff --git a/src/app/Console/Kernel.php b/src/app/Console/Kernel.php index 3e226775..4ce8859a 100644 --- a/src/app/Console/Kernel.php +++ b/src/app/Console/Kernel.php @@ -22,6 +22,8 @@ protected function schedule(Schedule $schedule): void // This applies wallet charges $schedule->command('wallet:charge')->everyFourHours(); + // Top-up wallets that should have been topped-up but didn't for some reason + $schedule->command('wallet:charge --topup')->dailyAt('05:30'); // This removes deleted storage files/file chunks from the filesystem $schedule->command('fs:expunge')->hourly();