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


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