Skip to content

Commit 6e538a1

Browse files
committed
+ Added: search param into Issues api
1 parent 51242d8 commit 6e538a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Gitlab/Api/Issues.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function all($project_id = null, $page = 1, $per_page = self::PER_PAGE, a
1313
{
1414
$path = $project_id === null ? 'issues' : $this->getProjectPath($project_id, 'issues');
1515

16-
$params = array_intersect_key($params, array('labels' => '', 'state' => '', 'sort' => '', 'order_by' => '', 'milestone' => ''));
16+
$params = array_intersect_key($params, array('labels' => '', 'state' => '', 'sort' => '', 'order_by' => '', 'milestone' => '', 'search' => ''));
1717
$params = array_merge(array(
1818
'page' => $page,
1919
'per_page' => $per_page

0 commit comments

Comments
 (0)