diff options
| author | Stephan Groß | 2012-12-13 20:41:40 +0100 |
|---|---|---|
| committer | Stephan Groß | 2012-12-13 20:41:40 +0100 |
| commit | 76c840f1bb3b934dc2127faa04704ab4b11a018b (patch) | |
| tree | b45090d3ac4e1cf1b6c00d96ff7fc73966e98c2c | |
| parent | e198a2b37673a07a7cc374175c205362da34360e (diff) | |
| download | django-rest-framework-76c840f1bb3b934dc2127faa04704ab4b11a018b.tar.bz2 | |
added missing line
| -rw-r--r-- | rest_framework/generics.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rest_framework/generics.py b/rest_framework/generics.py index 3e4f29ad..507b12cb 100644 --- a/rest_framework/generics.py +++ b/rest_framework/generics.py @@ -197,6 +197,7 @@ class RetrieveUpdateAPIView(mixins.RetrieveModelMixin, def put(self, request, *args, **kwargs): return self.update(request, *args, **kwargs) + class RetrieveDestroyAPIView(mixins.RetrieveModelMixin, mixins.DestroyModelMixin, SingleObjectAPIView): |
