mirror of
https://github.com/Karaka-Management/oms-Workflow.git
synced 2026-01-11 14:58:39 +00:00
14 lines
270 B
PHP
Executable File
14 lines
270 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/workflow/instance.*$' => [
|
|
[
|
|
'dest' => '\Modules\Workflow\Controller\CliController:cliWorkflowInstanceCreate',
|
|
'verb' => RouteVerb::ANY,
|
|
],
|
|
],
|
|
];
|