Skip to content

Commit 8716dc9

Browse files
committed
Added several missing properties to Project model (actually looked at Gitlab source this time! :P)
1 parent 1ce9184 commit 8716dc9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

lib/Gitlab/Model/Project.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ class Project extends AbstractModel
1111
'id',
1212
'code',
1313
'name',
14+
'name_with_namespace',
1415
'namespace',
1516
'description',
1617
'path',
1718
'path_with_namespace',
19+
'ssh_url_to_repo',
20+
'http_url_to_repo',
21+
'web_url',
1822
'default_branch',
1923
'owner',
2024
'private',
@@ -25,8 +29,7 @@ class Project extends AbstractModel
2529
'wiki_enabled',
2630
'created_at',
2731
'greatest_access_level',
28-
'ssh_url_to_repo',
29-
'http_url_to_repo'
32+
'last_activity_at'
3033
);
3134

3235
public static function fromArray(Client $client, array $data)

0 commit comments

Comments
 (0)