We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc4011 commit f7b9c46Copy full SHA for f7b9c46
lib/Gitlab/Api/Issues.php
@@ -213,4 +213,14 @@ public function awardEmoji($project_id, $issue_iid)
213
{
214
return $this->get($this->getProjectPath($project_id, 'issues/'.$this->encodePath($issue_iid).'/award_emoji'));
215
}
216
+
217
+ /**
218
+ * @param int $project_id
219
+ * @param int $issue_iid
220
+ * @return mixed
221
+ */
222
+ public function closedByMergeRequests($project_id, $issue_iid)
223
+ {
224
+ return $this->get($this->getProjectPath($project_id, 'issues/'.$this->encodePath($issue_iid)).'/closed_by');
225
+ }
226
0 commit comments