Removed staff profiles

This commit is contained in:
2022-02-10 13:32:02 +00:00
parent 6a4ba00c78
commit 127c972304
3 changed files with 0 additions and 105 deletions

View File

@@ -49,21 +49,12 @@ class PromoteUser
$event->application->setStatus('APPROVED');
$event->application->response->vacancy->decrease();
$staffProfile = StaffProfile::create([
'userID' => $event->application->user->id,
'approvalDate' => now()->toDateTimeString(),
'memberNotes' => 'Approved by staff members. Welcome them to the team!',
]);
$event->application->user->assignRole('reviewer');
Log::info('User '.$event->application->user->name.' has just been promoted!', [
'newRank' => $event->application->response->vacancy->permissionGroupName,
'staffProfileID' => $staffProfile->id,
]);
$event->application->user->notify(new ApplicationApproved($event->application));
// note: Also notify staff
// TODO: Also assign new app role based on the permission group name
}
}