mirror of
https://github.com/jointakahe/takahe.git
synced 2025-02-16 15:45:14 +00:00
Also read query string params in parse body (#477)
This commit is contained in:
parent
a22ba4859b
commit
9779f867bf
1 changed files with 2 additions and 0 deletions
|
@ -17,4 +17,6 @@ class FormOrJsonParser(Parser):
|
||||||
value = {}
|
value = {}
|
||||||
for key, item in request.POST.items():
|
for key, item in request.POST.items():
|
||||||
value[key] = item
|
value[key] = item
|
||||||
|
for key, item in request.GET.items():
|
||||||
|
value[key] = item
|
||||||
return value
|
return value
|
||||||
|
|
Loading…
Reference in a new issue