Update password reset email

This commit is contained in:
2024-08-03 10:47:08 +10:00
parent 0469d64577
commit df3f7e31be
3 changed files with 9 additions and 6 deletions

View File

@@ -72,7 +72,8 @@ class User extends Authenticatable implements IDs
*/
public function sendPasswordResetNotification($token)
{
$this->notify((new ResetPasswordNotification($token))->onQueue('high'));
$this->notify((new ResetPasswordNotification($token))
->onQueue('user'));
}
/* INTERFACES */