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',
|
'id': 'UserView',
|
||||||
'type': 'object',
|
'type': 'object',
|
||||||
'description': 'Describes a user',
|
'description': 'Describes a user',
|
||||||
'required': ['verified', 'anonymous', 'gravatar'],
|
'required': ['verified', 'anonymous', 'avatar'],
|
||||||
'properties': {
|
'properties': {
|
||||||
'verified': {
|
'verified': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
|
@ -166,9 +166,9 @@ class User(ApiResource):
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'description': 'The user\'s email address',
|
'description': 'The user\'s email address',
|
||||||
},
|
},
|
||||||
'gravatar': {
|
'avatar': {
|
||||||
'type': 'string',
|
'type': 'string',
|
||||||
'description': 'Gravatar hash representing the user\'s icon'
|
'description': 'Avatar hash representing the user\'s icon'
|
||||||
},
|
},
|
||||||
'organizations': {
|
'organizations': {
|
||||||
'type': 'array',
|
'type': 'array',
|
||||||
|
|
Reference in a new issue