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 1ce9184 commit 8716dc9Copy full SHA for 8716dc9
lib/Gitlab/Model/Project.php
@@ -11,10 +11,14 @@ class Project extends AbstractModel
11
'id',
12
'code',
13
'name',
14
+ 'name_with_namespace',
15
'namespace',
16
'description',
17
'path',
18
'path_with_namespace',
19
+ 'ssh_url_to_repo',
20
+ 'http_url_to_repo',
21
+ 'web_url',
22
'default_branch',
23
'owner',
24
'private',
@@ -25,8 +29,7 @@ class Project extends AbstractModel
25
29
'wiki_enabled',
26
30
'created_at',
27
31
'greatest_access_level',
28
- 'ssh_url_to_repo',
- 'http_url_to_repo'
32
+ 'last_activity_at'
33
);
34
35
public static function fromArray(Client $client, array $data)
0 commit comments