Skip to content

Instantly share code, notes, and snippets.

@tobych
Created April 8, 2013 21:53
Show Gist options
  • Save tobych/5340873 to your computer and use it in GitHub Desktop.
Save tobych/5340873 to your computer and use it in GitHub Desktop.
class TruckResource(ModelResource):
class Meta:
queryset = Truck.objects.all()
list_allowed_methods = ['get']
detail_allowed_methods = ['get']
filtering = {'owner': ALL_WITH_RELATIONS, 'truck_number': ALL}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment