aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/mixins.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/mixins.py')
-rw-r--r--rest_framework/mixins.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/rest_framework/mixins.py b/rest_framework/mixins.py
index 61ac225b..ce633112 100644
--- a/rest_framework/mixins.py
+++ b/rest_framework/mixins.py
@@ -9,6 +9,7 @@ from __future__ import unicode_literals
from django.http import Http404
from rest_framework import status
from rest_framework.response import Response
+from rest_framework.request import clone_request
class CreateModelMixin(object):
@@ -90,6 +91,10 @@ class UpdateModelMixin(object):
try:
self.object = self.get_object()
except Http404:
+ # If this is a PUT-as-create operation, we need to ensure that
+ # we have relevant permissions, as if this was a POST request.
+ if not self.has_permission(clone_request(request, 'POST')):
+ self.permission_denied(self.request)
created = True
success_status_code = status.HTTP_201_CREATED
else: