mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
b4c257b2d0
added send reset link method updated jwt expire to one week added seeder
30 lines
600 B
PHP
30 lines
600 B
PHP
<?php
|
|
|
|
return [
|
|
'role_structure' => [
|
|
'administrator' => [
|
|
'users' => 'c,r,u,d',
|
|
'acl' => 'c,r,u,d',
|
|
'profile' => 'r,u'
|
|
],
|
|
'freightforwarder' => [
|
|
'users' => 'c,r,u,d',
|
|
'profile' => 'r,u'
|
|
],
|
|
'importer' => [
|
|
'profile' => 'r,u'
|
|
],
|
|
],
|
|
'permission_structure' => [
|
|
'cru_user' => [
|
|
'profile' => 'c,r,u'
|
|
],
|
|
],
|
|
'permissions_map' => [
|
|
'c' => 'create',
|
|
'r' => 'read',
|
|
'u' => 'update',
|
|
'd' => 'delete'
|
|
]
|
|
];
|