mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-21 23:01:00 +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 = {}
|
||||
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 a new issue