change queue time and set CloseSessionsJob

This commit is contained in:
2026-02-19 15:22:39 +01:00
parent 9d61186c72
commit 0327b95568

View File

@@ -1,5 +1,6 @@
<?php
use App\Jobs\CloseSessionsJob;
use App\Jobs\LogAppVersionJob;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
@@ -9,4 +10,6 @@
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
Schedule::job(new LogAppVersionJob)->everyMinute();
Schedule::job(new LogAppVersionJob)->hourly();
Schedule::job(new CloseSessionsJob)->hourly();