mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-13 13:16:55 +03:00
19 lines
746 B
Python
19 lines
746 B
Python
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
|