This commit is contained in:
Dennis Eichhorn 2024-04-07 17:31:42 +00:00
parent 104c3adb3f
commit 2a66eb0870
4 changed files with 11 additions and 3 deletions

View File

@ -22,6 +22,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:setupStyles',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -33,6 +34,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanDashboard',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -44,6 +46,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanArchive',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -55,6 +58,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoard',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -66,6 +70,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -77,6 +82,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -88,6 +94,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardCreate',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -99,6 +106,7 @@ return [
[
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardEdit',
'verb' => RouteVerb::GET,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::MODIFY,

View File

@ -19,7 +19,7 @@ use Modules\Tag\Models\TagMapper;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/**
* Mapper class.
* KanbanBoard mapper class.
*
* @package Modules\Kanban\Models
* @license OMS License 2.0

View File

@ -21,7 +21,7 @@ use Modules\Tag\Models\TagMapper;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/**
* Mapper class.
* KanbanCard mapper class.
*
* @package Modules\Kanban\Models
* @license OMS License 2.0

View File

@ -17,7 +17,7 @@ namespace Modules\Kanban\Models;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/**
* Mapper class.
* KanbanColumn mapper class.
*
* @package Modules\Kanban\Models
* @license OMS License 2.0