Remove unwanted queuing on auth notifications - Fixes #397

This commit is contained in:
Bubka 2024-10-12 17:32:18 +02:00
parent 22c0d341de
commit bc96815deb
2 changed files with 2 additions and 10 deletions

View File

@ -3,16 +3,12 @@
namespace App\Notifications;
use App\Models\AuthLog;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Jenssegers\Agent\Agent;
class FailedLoginNotification extends Notification implements ShouldQueue
class FailedLoginNotification extends Notification
{
use Queueable;
/**
* A user agent parser instance.
*

View File

@ -3,16 +3,12 @@
namespace App\Notifications;
use App\Models\AuthLog;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Jenssegers\Agent\Agent;
class SignedInWithNewDeviceNotification extends Notification implements ShouldQueue
class SignedInWithNewDeviceNotification extends Notification
{
use Queueable;
/**
* The AuthLog model instance
*/