Skip to content

Commit 08acb86

Browse files
authored
Merge pull request #257 from benito103e/patch-1
Add missing property 'avatar_url' to Project model
2 parents dcef0b5 + fb240fb commit 08acb86

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Gitlab/Model/Project.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* @property-read int $greatest_access_level
3030
* @property-read string $last_activity_at
3131
* @property-read string $tag_list
32+
* @property-read string $avatar_url
3233
* @property-read User $owner
3334
* @property-read ProjectNamespace $namespace
3435
*/
@@ -61,7 +62,8 @@ class Project extends AbstractModel
6162
'greatest_access_level',
6263
'last_activity_at',
6364
'snippets_enabled',
64-
'tag_list'
65+
'tag_list',
66+
'avatar_url'
6567
);
6668

6769
/**

0 commit comments

Comments
 (0)