This commit is contained in:
Dennis Eichhorn 2024-04-07 17:31:42 +00:00
parent c7e55cfb6b
commit 58e88457ce
3 changed files with 8 additions and 2 deletions

View File

@ -22,6 +22,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingPromotionList',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -33,6 +34,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingPromotionCreate',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -44,6 +46,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingPromotionView',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -55,6 +58,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingEventList',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -66,6 +70,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingEventCreate',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -77,6 +82,7 @@ return [
[
'dest' => '\Modules\Marketing\Controller\BackendController:viewMarketingEventView',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,

View File

@ -18,7 +18,7 @@ use Modules\Admin\Models\AccountMapper;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/**
* Mapper class.
* AccountRelation mapper class.
*
* @package Modules\Marketing\Models
* @license OMS License 2.0

View File

@ -21,7 +21,7 @@ use Modules\Tasks\Models\TaskMapper;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/**
* Mapper class.
* Promotion mapper class.
*
* @package Modules\Marketing\Models
* @license OMS License 2.0