From 602f10c5d55fca3445cc769d2460552c370406f6 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Wed, 6 Dec 2023 13:14:44 +0800 Subject: [PATCH] * Add kanban close config. --- module/kanban/config/form.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/module/kanban/config/form.php b/module/kanban/config/form.php index 2f6bedb214..e270ed04e5 100644 --- a/module/kanban/config/form.php +++ b/module/kanban/config/form.php @@ -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);