* Add kanban close config.

This commit is contained in:
sunguangming
2023-12-06 13:15:49 +08:00
parent 1ac0ceeef7
commit 602f10c5d5
+6
View File
@@ -64,3 +64,9 @@ $config->kanban->form->activate['activatedBy'] = array('type' => 'string',
$config->kanban->form->activate['activatedDate'] = array('type' => 'datetime', 'required' => true, 'default' => $now);
$config->kanban->form->activate['lastEditedBy'] = array('type' => 'string', 'required' => true, 'default' => $app->user->account);
$config->kanban->form->activate['lastEditedDate'] = array('type' => 'datetime', 'required' => true, 'default' => $now);
$config->kanban->form->close['status'] = array('type' => 'string', 'required' => true, 'default' => 'closed');
$config->kanban->form->close['closedBy'] = array('type' => 'string', 'required' => true, 'default' => $app->user->account);
$config->kanban->form->close['closedDate'] = array('type' => 'datetime', 'required' => true, 'default' => $now);
$config->kanban->form->close['lastEditedBy'] = array('type' => 'string', 'required' => true, 'default' => $app->user->account);
$config->kanban->form->close['lastEditedDate'] = array('type' => 'datetime', 'required' => true, 'default' => $now);