11 lines
338 B
PHP
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');
|