Rename gravatar field after the bees merge.
This commit is contained in:
parent
1c32faa31d
commit
b3240de1f8
1 changed files with 8 additions and 8 deletions
|
@ -152,7 +152,7 @@ class User(ApiResource):
|
|||
'id': 'UserView',
|
||||
'type': 'object',
|
||||
'description': 'Describes a user',
|
||||
'required': ['verified', 'anonymous', 'gravatar'],
|
||||
'required': ['verified', 'anonymous', 'avatar'],
|
||||
'properties': {
|
||||
'verified': {
|
||||
'type': 'boolean',
|
||||
|
@ -166,9 +166,9 @@ class User(ApiResource):
|
|||
'type': 'string',
|
||||
'description': 'The user\'s email address',
|
||||
},
|
||||
'gravatar': {
|
||||
'avatar': {
|
||||
'type': 'string',
|
||||
'description': 'Gravatar hash representing the user\'s icon'
|
||||
'description': 'Avatar hash representing the user\'s icon'
|
||||
},
|
||||
'organizations': {
|
||||
'type': 'array',
|
||||
|
|
Reference in a new issue