Skip to content

Commit 4d290ff

Browse files
authored
Merge pull request #126 from beeglebug/patch-1
Added support for milestone filter
2 parents d23c5f8 + db8b403 commit 4d290ff

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' => ''));
16+
$params = array_intersect_key($params, array('labels' => '', 'state' => '', 'sort' => '', 'order_by' => '', 'milestone' => ''));
1717
$params = array_merge(array(
1818
'page' => $page,
1919
'per_page' => $per_page

0 commit comments

Comments
 (0)