diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index fac55927..55f86929 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -7,6 +7,7 @@ use App\Jobs\ProcessSessionReminders; use App\Jobs\ProcessSoloCertExpiryWarnings; use App\Jobs\ProcessShanwickController; +use App\Jobs\DiscordTrainingUpdates; use App\Models\Roster\RosterMember; use App\Notifications\Network\OneWeekInactivityReminder; use App\Notifications\Network\TwoWeekInactivityReminder; @@ -104,6 +105,9 @@ protected function schedule(Schedule $schedule) //Training/OTS session reminders $schedule->job(new ProcessSessionReminders())->daily(); + // Check Training Threads Status (Once per week) + $schedule->job(new DiscordTrainingUpdates())->weeklyOn(7, '17:00'); + // Discord role updating //$schedule->job(new UpdateDiscordUserRoles)->twiceDaily(6, 18); }