Added logging for failed authentication attempts

This commit is contained in:
2020-09-08 01:26:27 +01:00
parent e566e40404
commit 20ab381076
2 changed files with 41 additions and 0 deletions

View File

@@ -2,7 +2,9 @@
namespace App\Providers;
use App\Listeners\LogAuthenticationFailure;
use App\Listeners\OnUserRegistration;
use Illuminate\Auth\Events\Failed;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
@@ -20,6 +22,9 @@ class EventServiceProvider extends ServiceProvider
SendEmailVerificationNotification::class,
OnUserRegistration::class
],
Failed::class => [
LogAuthenticationFailure::class
],
'App\Events\ApplicationApprovedEvent' => [
'App\Listeners\PromoteUser'
],