Skip to content

Commit

Permalink
Merge pull request #316 from czqoocavatsim/JoshuaBranch
Browse files Browse the repository at this point in the history
Yet Another Update
  • Loading branch information
JoshuaMicallefYBSU authored Aug 18, 2024
2 parents 6732a6c + 87f0e90 commit c551979
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use App\Jobs\ProcessSessionReminders;
use App\Jobs\ProcessSoloCertExpiryWarnings;
use App\Jobs\ProcessShanwickController;
use App\Jobs\DiscordTrainingUpdates;
use App\Jobs\DiscordTrainingWeeklyUpdates;
use App\Models\Roster\RosterMember;
use App\Notifications\Network\OneWeekInactivityReminder;
use App\Notifications\Network\TwoWeekInactivityReminder;
Expand Down Expand Up @@ -106,7 +106,7 @@ protected function schedule(Schedule $schedule)
$schedule->job(new ProcessSessionReminders())->daily();

// Check Training Threads Status (Once per week)
$schedule->job(new DiscordTrainingUpdates())->weeklyOn(7, '22:28');
$schedule->job(new DiscordTrainingWeeklyUpdates())->weeklyOn(7, '22:35');

// Discord role updating
//$schedule->job(new UpdateDiscordUserRoles)->twiceDaily(6, 18);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use App\Models\Training\Instructing\Links\StudentStatusLabelLink;
use Carbon\Carbon;

class DiscordTrainingUpdates implements ShouldQueue
class DiscordTrainingWeeklyUpdates implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

Expand Down

0 comments on commit c551979

Please sign in to comment.