Skip to content

Instantly share code, notes, and snippets.

@Mistobaan
Created April 26, 2012 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mistobaan/2501811 to your computer and use it in GitHub Desktop.
Save Mistobaan/2501811 to your computer and use it in GitHub Desktop.
class MetadataResource(ModelResource):
class Meta:
queryset = MetadataModel.objects.all()
resource_name = 'metadata'
allowed_methods = ['get', 'post', 'put', 'delete']
filtering = {
'adcode': ALL,
'status': ALL,
'first_run_date': ['exact', 'lt', 'lte', 'gte', 'gt'],
}
authorization = Authorization()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment