oms-Purchase/Admin/Routes/Cli.php
Dennis Eichhorn 32846ea7f1
Some checks are pending
Image optimization / general_image_workflow (push) Waiting to run
CI / general_module_workflow_php (push) Waiting to run
CI / general_module_workflow_js (push) Waiting to run
bug fixes
2025-04-02 13:33:51 +00:00

14 lines
289 B
PHP
Executable File

<?php
declare(strict_types=1);
use phpOMS\Router\RouteVerb;
return [
'^/purchase/order/suggestion/create( .*$|$)' => [
[
'dest' => '\Modules\Purchase\Controller\CliController:cliGenerateOrderSuggestion',
'verb' => RouteVerb::ANY,
],
],
];