]> _ Git - psq.git/commitdiff
reg_complete on password reste
authorLouis Jeckel <louis.jeckel@outlook.com>
Mon, 19 Oct 2020 17:18:37 +0000 (19:18 +0200)
committerLouis Jeckel <louis.jeckel@outlook.com>
Mon, 19 Oct 2020 17:18:37 +0000 (19:18 +0200)
app/Providers/EventServiceProvider.php

index d149fe8b47d4507b1f3148c0f9b46edd03f53a12..cc03a34f945946c48661fb29d700dbdb3da3d32b 100644 (file)
@@ -2,6 +2,7 @@
 
 namespace App\Providers;
 
+use Illuminate\Auth\Events\PasswordReset;
 use Illuminate\Auth\Events\Registered;
 use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
 use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
@@ -24,6 +25,9 @@ class EventServiceProvider extends ServiceProvider
         ],
         DispatchMailgunEvent::class => [],
         ProcessBatch::class => [],
+        PasswordReset::class => [
+            'App\Listeners\PasswordResetListener'
+        ]
     ];
 
     /**