Skip to content

Commit 606067b

Browse files
committed
feat: LAR 10 Send a Telegram notification for articles that are submitted but neither approved nor declined.
1 parent 2320093 commit 606067b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Console/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ protected function schedule(Schedule $schedule): void
2323
$schedule->command('lcm:post-article-to-telegram')->everyFourHours();
2424
$schedule->command('lcm:send-unverified-mails')->weeklyOn(1, '8:00');
2525
$schedule->command('sitemap:generate')->daily();
26-
$schedule->command('lcm:notify-pending-articles')->everyTwoDays();
26+
$schedule->command('lcm:notify-pending-articles')->days(2);
2727
}
2828
}
2929

3030
protected function commands(): void
3131
{
3232
$this->load(__DIR__.'/Commands');
3333
}
34-
}
34+
}

0 commit comments

Comments
 (0)