mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-08-04 20:40:14 +03:00
Merge 60585ac281
into 1ca5a9d042
This commit is contained in:
commit
0372d48885
|
@ -2,8 +2,8 @@
|
||||||
# just Django, but for the purposes of development and testing
|
# just Django, but for the purposes of development and testing
|
||||||
# there are a number of packages that are useful to install.
|
# there are a number of packages that are useful to install.
|
||||||
|
|
||||||
# Laying these out as seperate requirements files, allows us to
|
# Laying these out as separate requirements files, allows us to
|
||||||
# only included the relevent sets when running tox, and ensures
|
# only included the relevant sets when running tox, and ensures
|
||||||
# we are only ever declaring our dependencies in one place.
|
# we are only ever declaring our dependencies in one place.
|
||||||
|
|
||||||
-r requirements/requirements-optionals.txt
|
-r requirements/requirements-optionals.txt
|
||||||
|
|
|
@ -91,7 +91,7 @@ class DestroyModelMixin(object):
|
||||||
def destroy(self, request, *args, **kwargs):
|
def destroy(self, request, *args, **kwargs):
|
||||||
instance = self.get_object()
|
instance = self.get_object()
|
||||||
self.perform_destroy(instance)
|
self.perform_destroy(instance)
|
||||||
return Response(status=status.HTTP_204_NO_CONTENT)
|
return Response(status=status.HTTP_204_NO_CONTENT, content_type=request.content_type)
|
||||||
|
|
||||||
def perform_destroy(self, instance):
|
def perform_destroy(self, instance):
|
||||||
instance.delete()
|
instance.delete()
|
||||||
|
|
|
@ -11,6 +11,7 @@ from django.utils import six
|
||||||
from django.utils.six.moves.http_client import responses
|
from django.utils.six.moves.http_client import responses
|
||||||
|
|
||||||
from rest_framework.serializers import Serializer
|
from rest_framework.serializers import Serializer
|
||||||
|
from rest_framework.settings import api_settings
|
||||||
|
|
||||||
|
|
||||||
class Response(SimpleTemplateResponse):
|
class Response(SimpleTemplateResponse):
|
||||||
|
@ -77,7 +78,7 @@ class Response(SimpleTemplateResponse):
|
||||||
)
|
)
|
||||||
return bytes(ret.encode(charset))
|
return bytes(ret.encode(charset))
|
||||||
|
|
||||||
if not ret:
|
if api_settings.REMOVE_CONTENT_TYPE_ON_HTTP_204 and not ret:
|
||||||
del self['Content-Type']
|
del self['Content-Type']
|
||||||
|
|
||||||
return ret
|
return ret
|
||||||
|
|
|
@ -107,6 +107,8 @@ DEFAULTS = {
|
||||||
'TIME_FORMAT': ISO_8601,
|
'TIME_FORMAT': ISO_8601,
|
||||||
'TIME_INPUT_FORMATS': (ISO_8601,),
|
'TIME_INPUT_FORMATS': (ISO_8601,),
|
||||||
|
|
||||||
|
'REMOVE_CONTENT_TYPE_ON_HTTP_204': True,
|
||||||
|
|
||||||
# Encoding
|
# Encoding
|
||||||
'UNICODE_JSON': True,
|
'UNICODE_JSON': True,
|
||||||
'COMPACT_JSON': True,
|
'COMPACT_JSON': True,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user