Releases: mikebronner/laravel-governor
Releases · mikebronner/laravel-governor
0.6.14
Removed
- throttling of API routes.
0.6.13
Added
- Laravel 5.7 compatibility.
0.6.12
Fix
- renaming of
isRole
tohasRole
in remaining spots.
0.6.11
Changed
isRole()
tohasRole()
.- return
true
if user isSuperAdmin
.
0.6.10
Fixed
- straggling
->is()
check, renamed to->isRole()
.
0.6.9
Changed
->is(string $roleName) : bool
method to->isRole(string $name) : bool
to avoid collision with->is()
method on Laravel model class.
0.6.8
Updated
->is($role)
method to not considerSuperAdmin
role.->is($role)
method signature to be more clear:->is(string $roleName) : bool
.
0.6.7
Fixed
- deprecated occurrence of
->isSuperAdmin
.
0.6.6
Fixed
- checking of user-is API request.
0.6.5
Added
- role-check HTTP API to supplement the
userIs
check functionality in the previous release.