mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 11:46:47 +00:00
15 lines
384 B
PHP
15 lines
384 B
PHP
<?php
|
|
|
|
use App\Console\Commands\Database\CleanupLoginKeys;
|
|
use App\Console\Commands\Nostr\PublishUnpublishedItems;
|
|
|
|
Schedule::command(CleanupLoginKeys::class)->everyFifteenMinutes();
|
|
|
|
Schedule::command(PublishUnpublishedItems::class, [
|
|
'--model' => 'MeetupEvent',
|
|
])->hourly();
|
|
|
|
Schedule::command(PublishUnpublishedItems::class, [
|
|
'--model' => 'Meetup',
|
|
])->dailyAt('18:00');
|