mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-11 11:28:42 +00:00
ui fixes
This commit is contained in:
parent
104c3adb3f
commit
2a66eb0870
|
|
@ -22,6 +22,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:setupStyles',
|
'dest' => '\Modules\Kanban\Controller\BackendController:setupStyles',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::READ,
|
'type' => PermissionType::READ,
|
||||||
|
|
@ -33,6 +34,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanDashboard',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanDashboard',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::READ,
|
'type' => PermissionType::READ,
|
||||||
|
|
@ -44,6 +46,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanArchive',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanArchive',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::READ,
|
'type' => PermissionType::READ,
|
||||||
|
|
@ -55,6 +58,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoard',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoard',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::READ,
|
'type' => PermissionType::READ,
|
||||||
|
|
@ -66,6 +70,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::READ,
|
'type' => PermissionType::READ,
|
||||||
|
|
@ -77,6 +82,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanCard',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::CREATE,
|
'type' => PermissionType::CREATE,
|
||||||
|
|
@ -88,6 +94,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardCreate',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardCreate',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::CREATE,
|
'type' => PermissionType::CREATE,
|
||||||
|
|
@ -99,6 +106,7 @@ return [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardEdit',
|
'dest' => '\Modules\Kanban\Controller\BackendController:viewKanbanBoardEdit',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
|
'active' => true,
|
||||||
'permission' => [
|
'permission' => [
|
||||||
'module' => BackendController::NAME,
|
'module' => BackendController::NAME,
|
||||||
'type' => PermissionType::MODIFY,
|
'type' => PermissionType::MODIFY,
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ use Modules\Tag\Models\TagMapper;
|
||||||
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mapper class.
|
* KanbanBoard mapper class.
|
||||||
*
|
*
|
||||||
* @package Modules\Kanban\Models
|
* @package Modules\Kanban\Models
|
||||||
* @license OMS License 2.0
|
* @license OMS License 2.0
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ use Modules\Tag\Models\TagMapper;
|
||||||
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mapper class.
|
* KanbanCard mapper class.
|
||||||
*
|
*
|
||||||
* @package Modules\Kanban\Models
|
* @package Modules\Kanban\Models
|
||||||
* @license OMS License 2.0
|
* @license OMS License 2.0
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ namespace Modules\Kanban\Models;
|
||||||
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mapper class.
|
* KanbanColumn mapper class.
|
||||||
*
|
*
|
||||||
* @package Modules\Kanban\Models
|
* @package Modules\Kanban\Models
|
||||||
* @license OMS License 2.0
|
* @license OMS License 2.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user