aboutsummaryrefslogtreecommitdiffstats
path: root/examples/modelresourceexample/resources.py
blob: 634ea6b30e7e81e7eb98a66ad607ed5988c23bfc (plain)
1
2
3
4
5
6
7
from djangorestframework.resources import ModelResource
from modelresourceexample.models import MyModel

class MyModelResource(ModelResource):
    model = MyModel
    fields = ('foo', 'bar', 'baz', 'url')
    ordering = ('created',)