Rename gravatar field after the bees merge.

This commit is contained in:
Joseph Schorr 2014-11-25 19:59:24 -05:00
parent 1c32faa31d
commit b3240de1f8

View file

@ -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',