Allow null avatars from Gitlab
Not all gitlab repositories have defined owners, meaning we cannot always get an avatar_url for the namespace
Fixes 241774339
/
This commit is contained in:
parent
1bfca871ec
commit
eae151ff96
3 changed files with 7 additions and 6 deletions
|
@ -21,7 +21,7 @@ NAMESPACES_SCHEMA = {
|
|||
'description': 'Score of the relevance of the namespace',
|
||||
},
|
||||
'avatar_url': {
|
||||
'type': 'string',
|
||||
'type': ['string', 'null'],
|
||||
'description': 'URL of the avatar for this namespace',
|
||||
},
|
||||
'url': {
|
||||
|
|
Reference in a new issue