mirror of
https://github.com/Karaka-Management/oms-Surveys.git
synced 2026-01-11 16:08:41 +00:00
23 lines
551 B
PHP
23 lines
551 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/survey/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Surveys\Controller:viewSurveysList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/survey/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Surveys\Controller:viewSurveysCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/survey/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\Surveys\Controller:viewSurveysProfile',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|