aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simpleexample/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simpleexample/views.py')
-rw-r--r--examples/simpleexample/views.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/simpleexample/views.py b/examples/simpleexample/views.py
deleted file mode 100644
index 1f113ac2..00000000
--- a/examples/simpleexample/views.py
+++ /dev/null
@@ -1,18 +0,0 @@
-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