aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/generic-views.md
diff options
context:
space:
mode:
authorStephan Groß2012-12-13 16:57:17 +0100
committerStephan Groß2012-12-13 16:57:17 +0100
commite198a2b37673a07a7cc374175c205362da34360e (patch)
tree6f347ac37279f86de651514da7a607c9f4285fb2 /docs/api-guide/generic-views.md
parent497da7fc699b9e88c966e37bc48739865336683d (diff)
downloaddjango-rest-framework-e198a2b37673a07a7cc374175c205362da34360e.tar.bz2
added RetrieveUpdateAPIView
Diffstat (limited to 'docs/api-guide/generic-views.md')
-rw-r--r--docs/api-guide/generic-views.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index 428323b8..ef09dfe5 100644
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -97,6 +97,14 @@ Provides `get` and `post` method handlers.
Extends: [MultipleObjectAPIView], [ListModelMixin], [CreateModelMixin]
+## RetrieveUpdateAPIView
+
+Used for **read or update** endpoints to represent a **single model instance**.
+
+Provides `get` and `put` method handlers.
+
+Extends: [SingleObjectAPIView], [RetrieveModelMixin], [UpdateModelMixin]
+
## RetrieveDestroyAPIView
Used for **read or delete** endpoints to represent a **single model instance**.