Skip to content

Commit eb233b5

Browse files
omarlopesinom1guelpf
authored andcommitted
Project boards: remove $parameters param, not neccesary!
It was added by mistake, in https://docs.gitlab.com/ee/api/boards.html there is no defined any query param for project boards.
1 parent 6c8124b commit eb233b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Gitlab/Api/Projects.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,9 +371,9 @@ public function issues($project_id, $parameters = array())
371371
* @param int $project_id
372372
* @return mixed
373373
*/
374-
public function boards($project_id, $parameters = array())
374+
public function boards($project_id)
375375
{
376-
return $this->get($this->getProjectPath($project_id, 'boards'), $parameters);
376+
return $this->get($this->getProjectPath($project_id, 'boards'));
377377
}
378378

379379
/**

0 commit comments

Comments
 (0)