Skip to content

Commit 8989e3e

Browse files
author
Matt Humphrey
committed
Added avatar_url property to User. Fixes #76
1 parent f3c9f70 commit 8989e3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Gitlab/Model/User.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @property-read bool $is_admin
2727
* @property-read bool $can_create_group
2828
* @property-read bool $can_create_project
29+
* @property-read string $avatar_url
2930
*/
3031
class User extends AbstractModel
3132
{
@@ -54,7 +55,8 @@ class User extends AbstractModel
5455
'state',
5556
'is_admin',
5657
'can_create_group',
57-
'can_create_project'
58+
'can_create_project',
59+
'avatar_url'
5860
);
5961

6062
/**

0 commit comments

Comments
 (0)