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 6aa9119 commit 3a3f674Copy full SHA for 3a3f674
lib/Gitlab/Api/Projects.php
@@ -358,6 +358,14 @@ public function hook($project_id, $hook_id)
358
return $this->get($this->getProjectPath($project_id, 'hooks/'.$this->encodePath($hook_id)));
359
}
360
361
+ /**
362
+ * @param int $project_id
363
+ * @return mixed
364
+ */
365
+ public function issues($project_id, $parameters = array())
366
+ {
367
+ return $this->get($this->getProjectPath($project_id, 'issues'), $parameters);
368
+ }
369
/**
370
* @param int $project_id
371
* @param string $url
0 commit comments