Added slack notifications

This commit is contained in:
Henry Whitaker
2020-04-27 18:50:01 +01:00
parent 4764aae1e4
commit fc35da9f8d
10 changed files with 221 additions and 4 deletions

View File

@@ -2,6 +2,8 @@
namespace App\Providers;
use App\Events\SpeedtestCompleteEvent;
use App\Listeners\SpeedtestCompleteListener;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
@@ -18,6 +20,9 @@ class EventServiceProvider extends ServiceProvider
Registered::class => [
SendEmailVerificationNotification::class,
],
SpeedtestCompleteEvent::class => [
SpeedtestCompleteListener::class,
],
];
/**