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 501813b commit 95963bcCopy full SHA for 95963bc
lib/Gitlab/Api/Projects.php
@@ -5,13 +5,28 @@
5
class Projects extends AbstractApi
6
{
7
public function all($page = 1, $per_page = self::PER_PAGE)
8
+ {
9
+ return $this->get('projects/all', array(
10
+ 'page' => $page,
11
+ 'per_page' => $per_page
12
+ ));
13
+ }
14
+ public function accessible($page = 1, $per_page = self::PER_PAGE)
15
16
return $this->get('projects', array(
17
'page' => $page,
18
'per_page' => $per_page
19
));
20
}
21
22
+ public function owned($page = 1, $per_page = self::PER_PAGE)
23
24
+ return $this->get('projects/owned', array(
25
26
27
28
29
+
30
public function show($project_id)
31
32
return $this->get('projects/'.urlencode($project_id));
0 commit comments