This commit is contained in:
Patrick Niebeling
2025-03-12 10:46:58 +01:00
parent 05f50ea068
commit 054cdb70c8
10 changed files with 151 additions and 167 deletions

9
appinfo/cron.php Normal file
View File

@ -0,0 +1,9 @@
<?php
// lib/cron.php
/** @var \OCP\IContainer $container */
$container = require __DIR__ . '/../lib/container.php';
$job = $container->query('OCA\Deckflow\Cron\MoveOverdueCardsJob');
// Führe den Cronjob aus
$job->execute();