mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-21 05:18:39 +00:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/support/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewSupportList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/support/single.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewSupportTicket',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/support/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewSupportCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/support/analysis.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewSupportAnalysis',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/support/settings.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewSupportSettings',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/private/support/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\Support\Controller:viewPrivateSupportDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|