mirror of
https://github.com/Karaka-Management/oms-Shop.git
synced 2026-01-11 10:38:40 +00:00
22 lines
576 B
PHP
Executable File
22 lines
576 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Modules\Shop\Controller\ShopController;
|
|
use Modules\Shop\Models\PermissionCategory;
|
|
use phpOMS\Account\PermissionType;
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^(\/)(\?.*)*$' => [
|
|
[
|
|
'dest' => '\Modules\Shop\Controller\ShopController:viewWelcome',
|
|
'verb' => RouteVerb::GET,
|
|
'permission' => [
|
|
'module' => ShopController::NAME,
|
|
'type' => PermissionType::READ,
|
|
'state' => PermissionCategory::SHOP,
|
|
],
|
|
],
|
|
],
|
|
];
|