aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simpleexample/views.py
blob: 1f113ac27b55da5b0e6fd3673487a78b8c451871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from djangorestframework.modelresource import ModelResource, RootModelResource
from simpleexample.models import MyModel

FIELDS = ('foo', 'bar', 'baz', 'absolute_url')

class MyModelRootResource(RootModelResource):
    """A create/list resource for MyModel.
    Available for both authenticated and anonymous access for the purposes of the sandbox."""
    model = MyModel
    allowed_methods = anon_allowed_methods = ('GET', 'POST')
    fields = FIELDS

class MyModelResource(ModelResource):
    """A read/update/delete resource for MyModel.
    Available for both authenticated and anonymous access for the purposes of the sandbox."""
    model = MyModel
    allowed_methods = anon_allowed_methods = ('GET', 'PUT', 'DELETE')
    fields = FIELDS