CleanupLoginKeys

This commit is contained in:
HolgerHatGarKeineNode
2023-02-02 16:07:06 +01:00
parent 5d3919466f
commit aa3af0b1d7
2 changed files with 38 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Console;
use App\Console\Commands\Database\CleanupLoginKeys;
use App\Console\Commands\Feed\ReadAndSyncPodcastFeeds;
use App\Console\Commands\OpenBooks\SyncOpenBooks;
use Illuminate\Console\Scheduling\Schedule;
@@ -24,12 +25,15 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule)
{
$schedule->call(new PruneStaleAttachments)
->daily();
$schedule->command(SyncOpenBooks::class)
->dailyAt('04:00');
$schedule->command(ReadAndSyncPodcastFeeds::class)
->dailyAt('04:30');
$schedule->command(CleanupLoginKeys::class)
->everyFifteenMinutes();
}
/**