mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
28 lines
492 B
PHP
28 lines
492 B
PHP
<?php
|
|
const SK_PERMISSION_MATRIX = [
|
|
"superadmin"=> [
|
|
"admin.*",
|
|
"users.*",
|
|
"beta.*"
|
|
],
|
|
"admin"=> [
|
|
"admin.access",
|
|
"users.create",
|
|
"users.edit",
|
|
"users.delete",
|
|
"beta.access"
|
|
],
|
|
"developer"=> [
|
|
"admin.access",
|
|
"admin.settings",
|
|
"users.create",
|
|
"users.edit",
|
|
"beta.access"
|
|
],
|
|
"user"=> [
|
|
"users.list"
|
|
],
|
|
"beta"=> [
|
|
"beta.access"
|
|
]
|
|
]; |