feat(auth): harden authentication and add configurable two-factor support
This commit is contained in:
12
app/Notifications/QueuedResetPasswordNotification.php
Normal file
12
app/Notifications/QueuedResetPasswordNotification.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use Illuminate\Auth\Notifications\ResetPassword;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
|
||||
class QueuedResetPasswordNotification extends ResetPassword implements ShouldQueue
|
||||
{
|
||||
use Queueable;
|
||||
}
|
||||
Reference in New Issue
Block a user