Skip to content

Commit

Permalink
feat: LAR 10 Send a Telegram notification for articles that are submi…
Browse files Browse the repository at this point in the history
…tted but neither approved nor declined.
  • Loading branch information
StevyMarlino committed Oct 9, 2024
1 parent 2320093 commit 606067b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ protected function schedule(Schedule $schedule): void
$schedule->command('lcm:post-article-to-telegram')->everyFourHours();
$schedule->command('lcm:send-unverified-mails')->weeklyOn(1, '8:00');
$schedule->command('sitemap:generate')->daily();
$schedule->command('lcm:notify-pending-articles')->everyTwoDays();
$schedule->command('lcm:notify-pending-articles')->days(2);
}
}

protected function commands(): void
{
$this->load(__DIR__.'/Commands');
}
}
}

0 comments on commit 606067b

Please sign in to comment.