- Fixed default privileges
This commit is contained in:
parent
1d61ff87e4
commit
4484dc8985
|
@ -35,10 +35,11 @@ return [
|
|||
],
|
||||
|
||||
'taxus' => [
|
||||
[ new Privilege("dev", "Is a developper of this application."), "is_dev" ],
|
||||
[ new Privilege("admin", "Can manage mostly everything from this application."), "is_admin" ],
|
||||
[ new Privilege("user", "Is an authenticated user."), "is_user" ],
|
||||
[ new Privilege("anonymous", "Is an anonymous (unauthenticated) user."), "is_anonymous" ],
|
||||
'is_dev' => [ 'dev' => "Can manage almost everything in this application."],
|
||||
'is_admin' => [ 'admin' => "Can manage almost everything in this application."],
|
||||
'is_moderator' => [ 'moderator' => "Can moderate this application."],
|
||||
'is_user' => [ 'user' => "Is an authenticated user."],
|
||||
'is_anonymous' => [ 'anonymous' => "Is an anonymous (unauthenticated) user."],
|
||||
]
|
||||
],
|
||||
|
||||
|
|
Loading…
Reference in New Issue