feat: invite by email from waitlist

This commit is contained in:
Andras Bacsai 2023-08-17 16:12:08 +02:00
parent 392c1650db
commit 847b3fe54f
3 changed files with 13 additions and 5 deletions

View File

@ -19,21 +19,29 @@ class InviteFromWaitlist extends Command
*
* @var string
*/
protected $signature = 'app:invite-from-waitlist';
protected $signature = 'app:invite-from-waitlist {email?}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Send invitation to the next user in the waitlist';
protected $description = 'Send invitation to the next user (or by email) in the waitlist';
/**
* Execute the console command.
*/
public function handle()
{
$this->next_patient = Waitlist::orderBy('created_at', 'asc')->where('verified', true)->first();
if ($this->argument('email')) {
$this->next_patient = Waitlist::where('email', $this->argument('email'))->first();
if (!$this->next_patient) {
$this->error("{$this->argument('email')} not found in the waitlist.");
return;
}
} else {
$this->next_patient = Waitlist::orderBy('created_at', 'asc')->where('verified', true)->first();
}
if ($this->next_patient) {
$this->register_user();
$this->remove_from_waitlist();

View File

@ -1,3 +1,3 @@
<?php
return '4.0.0-beta.20';
return '4.0.0-beta.21';

View File

@ -4,7 +4,7 @@
"version": "3.12.36"
},
"v4": {
"version": "4.0.0-beta.19"
"version": "4.0.0-beta.20"
}
}
}