Add option to not process bots during import

This commit is contained in:
Deon George
2021-09-11 00:38:11 +10:00
parent e8a9508391
commit 72bc9790d1
2 changed files with 18 additions and 11 deletions

View File

@@ -16,7 +16,10 @@ class PacketProcess extends Command
*
* @var string
*/
protected $signature = 'packet:process {pkt : Packet to process} {zone? : Zone the packet is from}';
protected $signature = 'packet:process'
.' {pkt : Packet to process}'
.' {--N|nobot : Dont process bots}'
.' {zone? : Zone the packet is from}';
/**
* The console command description.
@@ -41,7 +44,7 @@ class PacketProcess extends Command
// @todo validate that the packet's zone is in the domain.
// Dispatch job.
Job::dispatchSync($msg);
Job::dispatchSync($msg,$this->option('nobot'));
}
}
}