diff options
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 0cd8f169..a2d6628f 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -42,12 +42,11 @@ class Board extends Base { $task = $this->getTask(); $project = $this->project->getById($task['project_id']); - $projects = $this->projectPermission->getAllowedProjects($this->acl->getUserId()); + $params = array( 'errors' => array(), 'values' => $task, - 'users_list' => $this->projectPermission->getUsersList($project['id']), - 'projects' => $projects, + 'users_list' => $this->projectPermission->getMemberList($project['id']), 'current_project_id' => $project['id'], 'current_project_name' => $project['name'], ); @@ -95,12 +94,11 @@ class Board extends Base { $task = $this->getTask(); $project = $this->project->getById($task['project_id']); - $projects = $this->projectPermission->getAllowedProjects($this->acl->getUserId()); + $params = array( 'errors' => array(), 'values' => $task, 'categories_list' => $this->category->getList($project['id']), - 'projects' => $projects, 'current_project_id' => $project['id'], 'current_project_name' => $project['name'], ); @@ -213,7 +211,7 @@ class Board extends Base $this->user->storeLastSeenProjectId($project['id']); $this->response->html($this->template->layout('board_index', array( - 'users' => $this->projectPermission->getUsersList($project['id'], true, true), + 'users' => $this->projectPermission->getMemberList($project['id'], true, true), 'filters' => array('user_id' => UserModel::EVERYBODY_ID), 'projects' => $projects, 'current_project_id' => $project['id'], |