Skip to content

Commit fb240fb

Browse files
authored
Add missing property 'avatar_url' to Project model
1 parent dcef0b5 commit fb240fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Gitlab/Model/Project.php

Lines changed: 3 additions & 1 deletion
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)