Skip to content

Commit

Permalink
Merge pull request #335 from czqoocavatsim/JoshuaBranch
Browse files Browse the repository at this point in the history
Update Kernel.php
  • Loading branch information
JoshuaMicallefYBSU authored Aug 29, 2024
2 parents 71fcf18 + 3123f11 commit 1738d07
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 1738d07

Please sign in to comment.