Skip to content

Commit f1a5894

Browse files
authored
Merge pull request #790 from pinkary-project/fix/weekly-unread-notification-schedule
2 parents 82879fd + 52c9c9e commit f1a5894

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Illuminate\Support\Facades\Schedule;
1111

1212
Schedule::command(SendUnreadNotificationEmailsCommand::class)->dailyAt('13:00');
13-
Schedule::command(SendUnreadNotificationEmailsCommand::class, ['--weekly' => true])->weekly()->mondays()->at('13:00');
13+
Schedule::command(SendUnreadNotificationEmailsCommand::class, ['--weekly'])->weekly()->mondays()->at('13:00');
1414
Schedule::command(PerformDatabaseBackupCommand::class)->everySixHours();
1515
Schedule::command(DeleteNonEmailVerifiedUsersCommand::class)->hourly();
1616
Schedule::command(SyncVerifiedUsersCommand::class)->daily();

0 commit comments

Comments
 (0)