Skip to content

Commit 503a76d

Browse files
fix get all issueBoard lists
1 parent cf6ed25 commit 503a76d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/Gitlab/Api/IssueBoards.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function allLists($project_id, $board_id)
3636
*/
3737
public function showList($project_id, $board_id, $list_id)
3838
{
39-
return $this->get($this->getProjectPath($project_id, 'boards/'.$this->encodePath($board_id).'/lists'.$this->encodePath($list_id)));
39+
return $this->get($this->getProjectPath($project_id, 'boards/'.$this->encodePath($board_id).'/lists/'.$this->encodePath($list_id)));
4040
}
4141

4242
/**
@@ -64,9 +64,6 @@ public function createList($project_id, $board_id, $label_id)
6464
public function updateList($project_id, $board_id, $list_id, $position)
6565
{
6666
$params = array(
67-
'id' => $project_id,
68-
'board_id' => $board_id,
69-
'list_id' => $list_id,
7067
'position' => $position
7168
);
7269

0 commit comments

Comments
 (0)