Fix issue where user stats aren't incremented on PIREP auto accept (#335)

* Fix issue where user stats aren't incremented on PIREP auto accept

* Formatting
This commit is contained in:
Nabeel S
2019-08-01 15:23:59 -04:00
committed by GitHub
parent 63485d5a0f
commit 95147e31bf
9 changed files with 79 additions and 18 deletions

View File

@@ -5,6 +5,7 @@ namespace App\Providers;
use App\Events\Expenses;
use App\Events\UserStatsChanged;
use App\Listeners\AwardListener;
use App\Listeners\BidEvents;
use App\Listeners\ExpenseListener;
use App\Listeners\FinanceEvents;
use App\Listeners\NotificationEvents;
@@ -29,6 +30,7 @@ class EventServiceProvider extends ServiceProvider
];
protected $subscribe = [
BidEvents::class,
FinanceEvents::class,
NotificationEvents::class,
];