Skip to content

Feature/lar 184 discussion double notification send #343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
7 changes: 0 additions & 7 deletions app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@
use App\Events\CommentWasAdded;
use App\Events\ReplyWasCreated;
use App\Events\SponsoringPaymentInitialize;
use App\Events\ThreadWasCreated;
use App\Events\UserBannedEvent;
use App\Events\UserUnbannedEvent;
// use App\Listeners\SendCompanyEmailVerificationNotification;
use App\Listeners\NotifyMentionedUsers;
use App\Listeners\PostNewThreadNotification;
use App\Listeners\SendBanNotificationListener;
use App\Listeners\SendNewArticleNotification;
use App\Listeners\SendNewCommentNotification;
// use App\Listeners\SendWelcomeCompanyNotification;
use App\Listeners\SendNewReplyNotification;
use App\Listeners\SendNewThreadNotification;
use App\Listeners\SendPaymentNotification;
use App\Listeners\SendUnbanNotificationListener;
use App\Listeners\SendWelcomeMailNotification;
Expand All @@ -42,10 +39,6 @@ final class EventServiceProvider extends ServiceProvider
SendNewReplyNotification::class,
NotifyMentionedUsers::class,
],
ThreadWasCreated::class => [
SendNewThreadNotification::class,
PostNewThreadNotification::class,
],
ArticleWasSubmittedForApproval::class => [
SendNewArticleNotification::class,
],
Expand Down
Loading