Updated so "developed" in search and app API are the same (bug 886385)

This commit is contained in:
Rob Hudson 2013-06-25 09:55:17 -07:00
Родитель 987e6e6e08
Коммит 2db983fcee
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -132,7 +132,8 @@ def app_to_dict(app, region=None, profile=None):
for n in app.device_types]
if profile:
data['user'] = {
'developed': app.has_author(profile, [amo.AUTHOR_ROLE_OWNER]),
'developed': AddonUser.objects.filter(
user=profile, role=amo.AUTHOR_ROLE_OWNER).exists(),
'installed': app.has_installed(profile),
'purchased': app.pk in profile.purchase_ids(),
}