Skip to content

Commit

Permalink
Update Kernel.php
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaMicallefYBSU committed Aug 29, 2024
1 parent 2a395f2 commit 3123f11
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use App\Jobs\ProcessShanwickController;
use App\Jobs\DiscordTrainingWeeklyUpdates;
use App\Jobs\UpdateDiscordUserRoles;
use App\Jobs\DiscordAccountCheck;
use App\Models\Roster\RosterMember;
use App\Notifications\Network\OneWeekInactivityReminder;
use App\Notifications\Network\TwoWeekInactivityReminder;
Expand Down Expand Up @@ -109,8 +110,8 @@ protected function schedule(Schedule $schedule)
// Check Training Threads Status (Once per week)
$schedule->job(new DiscordTrainingWeeklyUpdates())->weeklyOn(6, '6:00');

// Discord role updating
// $schedule->job(new UpdateDiscordUserRoles)->twiceDaily(2, 14);
// Check If Account is Linked
$schedule->job(new DiscordAccountCheck)->dailyAt('7:10');
}

/**
Expand Down

0 comments on commit 3123f11

Please sign in to comment.