diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-11-14 02:17:27 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-12-02 12:53:31 +0100 |
commit | c9d7e88cc70b6ad124c28be479a6e64c4b174ea6 (patch) | |
tree | ee4a37c27b05c1ef4ccc6a01cc088b510f5084ef /src/Helpers | |
parent | 55beca95cd8d6ecfe610daea304c8374a10485af (diff) |
Implemented controller permissions
Diffstat (limited to 'src/Helpers')
-rw-r--r-- | src/Helpers/AuthenticatorServiceProvider.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Helpers/AuthenticatorServiceProvider.php b/src/Helpers/AuthenticatorServiceProvider.php index b7508b01..715a592f 100644 --- a/src/Helpers/AuthenticatorServiceProvider.php +++ b/src/Helpers/AuthenticatorServiceProvider.php @@ -13,5 +13,6 @@ class AuthenticatorServiceProvider extends ServiceProvider $this->app->instance(Authenticator::class, $authenticator); $this->app->instance('authenticator', $authenticator); + $this->app->instance('auth', $authenticator); } } |