Enable filtering over the published field

Tastypie requires that we define a list of fields that can be used
for filtering; add the "published" to this list so we can query pinry
for the list of images created after some date.
This commit is contained in:
Krzysztof Klimonda
2012-07-16 17:12:59 +02:00
parent 0f87943805
commit 6fd0c91fd1

View File

@@ -15,6 +15,9 @@ class PinResource(ModelResource): # pylint: disable-msg=R0904
queryset = Pin.objects.all()
resource_name = 'pin'
include_resource_uri = False
filtering = {
'published': ['gt'],
}
def dehydrate_thumbnail(self, bundle):
pin = Pin.objects.only('image').get(pk=bundle.data['id'])