phpOMS/tests/Application/Testapp/Admin/Install/Application/Routes.php
Dennis Eichhorn f991f15889 autofixes
2024-04-07 17:47:07 +00:00

30 lines
599 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
use phpOMS\Router\RouteVerb;
return [
'^.*/testapp(\?.*$|$)' => [
[
'dest' => '\phpOMS\tess\Application\Apps\Testapp\Controller\Controller:testEndpoint',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'type' => 1,
'state' => 2,
],
],
],
];