We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebec50 commit 5e5a8e1Copy full SHA for 5e5a8e1
app/Console/Kernel.php
@@ -12,6 +12,12 @@ class Kernel extends ConsoleKernel
12
*/
13
protected function schedule(Schedule $schedule): void
14
{
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
+
21
// Remove GitHub access for users with expired Max licenses
22
$schedule->command('github:remove-expired-access')
23
->dailyAt('10:00')
0 commit comments