Also read query string params in parse body (#477)
This commit is contained in:
parent
a22ba4859b
commit
9779f867bf
|
@ -17,4 +17,6 @@ class FormOrJsonParser(Parser):
|
|||
value = {}
|
||||
for key, item in request.POST.items():
|
||||
value[key] = item
|
||||
for key, item in request.GET.items():
|
||||
value[key] = item
|
||||
return value
|
||||
|
|
Loading…
Reference in New Issue