mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
18 lines
414 B
PHP
Executable File
18 lines
414 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Account\PermissionType;
|
|
|
|
return [
|
|
'^.*backend_admin -settings=general( \-.*$|$)' => [
|
|
0 => [
|
|
'dest' => '\Modules\Admin\Controller:viewSettingsGeneral',
|
|
'permission' => [
|
|
'module' => 'TEST',
|
|
'type' => PermissionType::READ,
|
|
'category' => 1,
|
|
],
|
|
],
|
|
],
|
|
];
|