Add more fields in bulk task creation form

This commit is contained in:
Frédéric Guillot
2018-06-08 11:12:24 -07:00
parent 8b6cd86679
commit 0f8d994e43
2 changed files with 14 additions and 4 deletions

View File

@@ -87,6 +87,11 @@ class TaskBulkController extends BaseController
'color_id' => $values['color_id'],
'project_id' => $project['id'],
'description' => $this->getTaskDescription($project, $values),
'tags' => $values['tags'],
'priority' => $values['priority'],
'score' => $values['score'],
'time_estimated' => $values['time_estimated'],
'date_due' => $values['date_due'],
));
}
}