Skip to content

Commit 5e5a8e1

Browse files
committed
Revert "Disable the renewal reminder"
This reverts commit 6cd189f.
1 parent bebec50 commit 5e5a8e1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/Console/Kernel.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ class Kernel extends ConsoleKernel
1212
*/
1313
protected function schedule(Schedule $schedule): void
1414
{
15+
// Send license expiry warnings daily at 9 AM UTC
16+
$schedule->command('licenses:send-expiry-warnings')
17+
->dailyAt('09:00')
18+
->onOneServer()
19+
->runInBackground();
20+
1521
// Remove GitHub access for users with expired Max licenses
1622
$schedule->command('github:remove-expired-access')
1723
->dailyAt('10:00')

0 commit comments

Comments
 (0)