Explorar el Código

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.
tags/v0.4.0
Krzysztof Klimonda hace 12 años
padre
commit
6fd0c91fd1
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      pinry/api/api.py

+ 3
- 0
pinry/api/api.py Ver fichero

@@ -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'])


Cargando…
Cancelar
Guardar