Auto assign user during task creation if there is only one user

This commit is contained in:
Frédéric Guillot
2014-11-25 20:18:21 -05:00
parent 37c6616e50
commit 7731f00e29
2 changed files with 7 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ class Task extends Base
),
'projects_list' => $this->project->getListByStatus(ProjectModel::ACTIVE),
'columns_list' => $this->board->getColumnsList($project['id']),
'users_list' => $this->projectPermission->getMemberList($project['id']),
'users_list' => $this->projectPermission->getMemberList($project['id'], true, false, true),
'colors_list' => $this->color->getList(),
'categories_list' => $this->category->getList($project['id']),
'date_format' => $this->config->get('application_date_format'),