ソースを参照

image can be loaded with a join as well (saves another query)

pull/86/head
Jens Gutermuth 9年前
コミット
9d4791b65a
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      pinry/core/api.py

+ 1
- 1
pinry/core/api.py ファイルの表示

@@ -139,7 +139,7 @@ class PinResource(ModelResource):
filtering = {
'submitter': ALL_WITH_RELATIONS
}
queryset = Pin.objects.all().select_related('submitter'). \
queryset = Pin.objects.all().select_related('submitter', 'image'). \
prefetch_related('image__thumbnail_set', 'tags')
resource_name = 'pin'
include_resource_uri = False


読み込み中…
キャンセル
保存