mirror of
https://github.com/Karaka-Management/oms-RiskManagement.git
synced 2026-01-11 19:38:40 +00:00
Routes files
This commit is contained in:
parent
810941629d
commit
b58d28173a
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
|
||||
$consoleRoutes = [];
|
||||
$moduleRoutes = [];
|
||||
|
|
@ -1,84 +1,64 @@
|
|||
<?php
|
||||
|
||||
$httpRoutes = [
|
||||
return [
|
||||
'^.*/backend/controlling/riskmanagement/cockpit.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskCockpit',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/risk/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/cause/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskCauseList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/solution/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskSolutionList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/unit/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskUnitList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/department/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskDepartmentList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/category/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskCategoryList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/project/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskProjectList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/process/list.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskProcessList',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
'^.*/backend/controlling/riskmanagement/settings/dashboard.*$' => [
|
||||
[
|
||||
'dest' => '\Modules\RiskManagement\Controller:viewRiskSettings',
|
||||
'verb' => RouteVerb::GET,
|
||||
'result' => ViewType::HTML,
|
||||
'layout' => ViewLayout::MAIN,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
|
||||
$socketRoutes = [];
|
||||
$moduleRoutes = [];
|
||||
Loading…
Reference in New Issue
Block a user