mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-11 11:28:42 +00:00
bug fixes and template adjustments
This commit is contained in:
parent
4f2571f1a0
commit
37d95ee8c5
|
|
@ -138,6 +138,12 @@
|
|||
"default": null,
|
||||
"null": true
|
||||
},
|
||||
"kanban_card_style": {
|
||||
"name": "kanban_card_style",
|
||||
"type": "TEXT",
|
||||
"null": true,
|
||||
"default": null
|
||||
},
|
||||
"kanban_card_type": {
|
||||
"name": "kanban_card_type",
|
||||
"type": "TINYINT",
|
||||
|
|
|
|||
|
|
@ -52,6 +52,8 @@ class KanbanCard implements \JsonSerializable
|
|||
|
||||
public string $color = '';
|
||||
|
||||
public string $style = '';
|
||||
|
||||
/**
|
||||
* Description.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ final class KanbanCardMapper extends DataMapperAbstract
|
|||
'kanban_card_name' => ['name' => 'kanban_card_name', 'type' => 'string', 'internal' => 'name'],
|
||||
'kanban_card_description' => ['name' => 'kanban_card_description', 'type' => 'string', 'internal' => 'description'],
|
||||
'kanban_card_descriptionraw' => ['name' => 'kanban_card_descriptionraw', 'type' => 'string', 'internal' => 'descriptionRaw'],
|
||||
'kanban_card_style' => ['name' => 'kanban_card_style', 'type' => 'string', 'internal' => 'style'],
|
||||
'kanban_card_type' => ['name' => 'kanban_card_type', 'type' => 'int', 'internal' => 'type'],
|
||||
'kanban_card_status' => ['name' => 'kanban_card_status', 'type' => 'int', 'internal' => 'status'],
|
||||
'kanban_card_order' => ['name' => 'kanban_card_order', 'type' => 'int', 'internal' => 'order'],
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
"require-dev": {
|
||||
"phpunit/phpunit": ">=9.4",
|
||||
"friendsofphp/php-cs-fixer": ">=3.0",
|
||||
"squizlabs/php_codesniffer": ">=3.5",
|
||||
"squizlabs/php_codesniffer": ">=3.6",
|
||||
"phpmd/phpmd": ">=2.9",
|
||||
"phpstan/phpstan": ">=0.12.58",
|
||||
"phan/phan": ">=3.2.6"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user