fedi-feed-router/routes/console.php
2025-07-05 18:26:04 +02:00

11 lines
338 B
PHP

<?php
use App\Console\Commands\FetchNewArticlesCommand;
use App\Jobs\SyncChannelPostsJob;
use Illuminate\Support\Facades\Schedule;
Schedule::command(FetchNewArticlesCommand::class)->hourly();
Schedule::call(function () {
SyncChannelPostsJob::dispatchForAllActiveChannels();
})->everyTenMinutes()->name('sync-lemmy-channel-posts');