summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-09-09 07:13:48 +0200
committerFrédéric Guillot <fred@kanboard.net>2014-09-09 07:13:48 +0200
commit0d4b6525dd86f837eb9e931e48a92fc6a0033e11 (patch)
treec876d0bdcb8f36b47442d020ea0e1572e21b7b3c /app/Model
parente383c069f1aeba49ea9905f77a51bf663e614b0e (diff)
The color is not mandatory for task creation through the API
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/Task.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Model/Task.php b/app/Model/Task.php
index 09333008..e35bd383 100644
--- a/app/Model/Task.php
+++ b/app/Model/Task.php
@@ -400,6 +400,11 @@ class Task extends Base
$values['column_id'] = $this->board->getFirstColumn($values['project_id']);
}
+ if (empty($values['color_id'])) {
+ $colors = $this->getColors();
+ $values['color_id'] = key($colors);
+ }
+
$values['date_creation'] = time();
$values['date_modification'] = $values['date_creation'];
$values['position'] = $this->countByColumnId($values['project_id'], $values['column_id']) + 1;
@@ -677,7 +682,6 @@ class Task extends Base
public function validateCreation(array $values)
{
$v = new Validator($values, array(
- new Validators\Required('color_id', t('The color is required')),
new Validators\Required('project_id', t('The project is required')),
new Validators\Integer('project_id', t('This value must be an integer')),
new Validators\Integer('column_id', t('This value must be an integer')),