Add domain to TIC processing, for nodelists that dont have a domain
This commit is contained in:
@@ -13,7 +13,9 @@ class TicProcess extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'tic:process {file : TIC file}';
|
||||
protected $signature = 'tic:process'
|
||||
.' {file : TIC file}'
|
||||
.' {domain? : Domain Name}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
@@ -30,7 +32,7 @@ class TicProcess extends Command
|
||||
public function handle()
|
||||
{
|
||||
// Dispatch job.
|
||||
Job::dispatchSync($this->argument('file'));
|
||||
Job::dispatchSync($this->argument('file'),$this->argument('domain'));
|
||||
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
Reference in New Issue
Block a user