mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-06-29 18:03:16 +03:00
Merge 20c7e605c9
into 1885012d61
This commit is contained in:
commit
f168ac9938
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -21,3 +21,4 @@ MANIFEST
|
||||||
.coverage
|
.coverage
|
||||||
.tox
|
.tox
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.idea/*
|
|
@ -167,3 +167,9 @@ class MultiPartParser(BaseParser):
|
||||||
{'detail': 'multipart parse error - %s' % unicode(exc)})
|
{'detail': 'multipart parse error - %s' % unicode(exc)})
|
||||||
return django_parser.parse()
|
return django_parser.parse()
|
||||||
|
|
||||||
|
DEFAULT_PARSERS = ( JSONParser,
|
||||||
|
FormParser,
|
||||||
|
MultiPartParser )
|
||||||
|
|
||||||
|
if YAMLParser:
|
||||||
|
DEFAULT_PARSERS += (YAMLParser,)
|
||||||
|
|
|
@ -44,9 +44,7 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView):
|
||||||
"""
|
"""
|
||||||
List of parsers the resource can parse the request with.
|
List of parsers the resource can parse the request with.
|
||||||
"""
|
"""
|
||||||
parsers = ( parsers.JSONParser,
|
parsers = parsers.DEFAULT_PARSERS
|
||||||
parsers.FormParser,
|
|
||||||
parsers.MultiPartParser )
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
List of all authenticating methods to attempt.
|
List of all authenticating methods to attempt.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user