summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-06-08 11:12:24 -0700
committerFrédéric Guillot <fred@kanboard.net>2018-06-08 11:12:24 -0700
commit0f8d994e432c2e2c6b26e0d6e026fd48c85148ea (patch)
tree6cb7be73761cadbe0c377ec894ea16f02d3c5a36 /app/Controller
parent8b6cd866799ecd70f72f4b8ecea7d1bdd7d375ad (diff)
Add more fields in bulk task creation form
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/TaskBulkController.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Controller/TaskBulkController.php b/app/Controller/TaskBulkController.php
index 0f49fb76..072647e5 100644
--- a/app/Controller/TaskBulkController.php
+++ b/app/Controller/TaskBulkController.php
@@ -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'],
));
}
}