Distro zip file from tar file #449 (#543)

* Create zip file from tar file

* Formatting
This commit is contained in:
Nabeel S
2020-02-10 10:40:42 -05:00
committed by GitHub
parent 989e86ecd3
commit 90e1b3317d
8 changed files with 303 additions and 150 deletions

View File

@@ -11,6 +11,10 @@ use App\Listeners\ExpenseListener;
use App\Listeners\FinanceEventHandler;
use App\Listeners\UserStateListener;
use App\Notifications\EventHandler;
use Codedge\Updater\Events\UpdateAvailable;
use Codedge\Updater\Events\UpdateSucceeded;
use Codedge\Updater\Listeners\SendUpdateAvailableNotification;
use Codedge\Updater\Listeners\SendUpdateSucceededNotification;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
@@ -33,6 +37,15 @@ class EventServiceProvider extends ServiceProvider
UserStatsChanged::class => [
AwardListener::class,
],
UpdateAvailable::class => [
SendUpdateAvailableNotification::class,
],
UpdateSucceeded::class => [
SendUpdateSucceededNotification::class,
],
];
protected $subscribe = [