Cronjobs implemented

This commit is contained in:
2026-04-25 00:32:15 +02:00
parent 4878f750bd
commit 2e8daf78e1
10 changed files with 231 additions and 6 deletions

21
app/Tasks/CloseEvent.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
namespace App\Tasks;
use App\Models\Event;
use App\Repositories\EventRepository;
class CloseEvent implements CronTask {
public function handle(): void
{
$now = now();
$eventRepository = new EventRepository();
/** @var Event $event */
foreach ($eventRepository->getAvailable(false) as $event) {
if ($event->registration_final_end < $now ) {
$event->registration_allowed = false;
$event->save();
}
}
}
}