Skip to content

Commit

Permalink
refactor(core): move AbstractSeatPlugin from services to seat package (
Browse files Browse the repository at this point in the history
…#39)

in order to keep consistency with packages, AbstractSeatPlugin is
moved to main package - as it will be extended by every single seat
packages (core and third party).
  • Loading branch information
warlof authored Oct 22, 2019
1 parent 18f8eab commit adaf173
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/NotificationsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

namespace Seat\Notifications;

use App\Providers\AbstractSeatPlugin;
use Seat\Notifications\Commands\AlertsRun;
use Seat\Services\AbstractSeatPlugin;

/**
* Class NotificationsServiceProvider.
Expand Down Expand Up @@ -104,8 +104,7 @@ public function register()
__DIR__ . '/Config/notifications.alerts.php', 'notifications.alerts');

// Add new permissions
$this->mergeConfigFrom(
__DIR__ . '/Config/notifications.permissions.php', 'web.permissions');
$this->registerPermissions(__DIR__ . '/Config/Permissions/notifications.php', 'notifications');

// Include this packages menu items
$this->mergeConfigFrom(
Expand Down

0 comments on commit adaf173

Please sign in to comment.