mirror of
https://github.com/Karaka-Management/oms-Checklist.git
synced 2026-01-11 15:28:41 +00:00
31 lines
828 B
PHP
31 lines
828 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/checklist/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Checklist\Controller:viewChecklistList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/checklist/template/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/checklist/template/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/checklist/template/view.*$' => [
|
|
[
|
|
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateView',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|