Add StatusHashtag Observer to AppServiceProvider

pull/1480/head
Daniel Supernault 6 years ago
parent 9d55d65b58
commit dea1e916cf
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -5,11 +5,13 @@ namespace App\Providers;
use App\Observers\{
AvatarObserver,
NotificationObserver,
StatusHashtagObserver,
UserObserver
};
use App\{
Avatar,
Notification,
StatusHashtag,
User
};
use Auth, Horizon, URL;
@ -31,6 +33,7 @@ class AppServiceProvider extends ServiceProvider
Avatar::observe(AvatarObserver::class);
Notification::observe(NotificationObserver::class);
StatusHashtag::observe(StatusHashtagObserver::class);
User::observe(UserObserver::class);
Horizon::auth(function ($request) {

Loading…
Cancel
Save