touch user.is_developer so it gets cached with the object

This commit is contained in:
Jeff Balogh 2010-10-21 12:46:29 -07:00
Родитель 804ee3d020
Коммит b936d1571a
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -329,6 +329,8 @@ class UserProfile(amo.models.ModelBase):
user.favorite_addons = addons[amo.COLLECTION_FAVORITES]
user.watching = list((CollectionWatcher.objects.filter(user=user)
.values_list('collection', flat=True)))
# Touch this @cached_property so the answer is cached with the object.
user.is_developer
class BlacklistedUsername(amo.models.ModelBase):