rename: person to people

This commit is contained in:
HDVinnie
2024-10-15 20:37:05 -04:00
parent b200fa6808
commit 370dfcdff2
2 changed files with 3 additions and 3 deletions
@@ -21,14 +21,14 @@ use Exception;
use Illuminate\Console\Command;
use Meilisearch\Client;
class AutoSyncPersonsToMeilisearch extends Command
class AutoSyncPeopleToMeilisearch extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'auto:sync_persons_to_meilisearch';
protected $signature = 'auto:sync_people_to_meilisearch';
/**
* The console command description.
+1 -1
View File
@@ -64,7 +64,7 @@ class Kernel extends ConsoleKernel
$schedule->command('auto:refund_download')->daily();
$schedule->command('auth:clear-resets')->daily();
$schedule->command('auto:sync_torrents_to_meilisearch')->everyFifteenMinutes();
$schedule->command('auto:sync_persons_to_meilisearch')->daily();
$schedule->command('auto:sync_people_to_meilisearch')->daily();
$schedule->command('auto:remove_expired_donors')->daily();
//$schedule->command('auto:ban_disposable_users')->weekends();
$schedule->command('backup:clean')->daily();