Skip to content

Commit

Permalink
Add force option to hash command (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Huisinga authored May 7, 2020
1 parent a368f9e commit e82a6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/HashCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class HashCommand extends Command
*
* @var string
*/
protected $signature = 'passport:hash';
protected $signature = 'passport:hash {--force : Force the operation to run without confirmation prompt}';

/**
* The console command description.
Expand All @@ -34,7 +34,7 @@ public function handle()
return;
}

if ($this->confirm('Are you sure you want to hash all client secrets? This cannot be undone.')) {
if ($this->option('force') || $this->confirm('Are you sure you want to hash all client secrets? This cannot be undone.')) {
$model = Passport::clientModel();

foreach ((new $model)->whereNotNull('secret')->cursor() as $client) {
Expand Down

0 comments on commit e82a6d2

Please sign in to comment.