🐛 Hotfix: Enable RAW body for JSON Content-Type

This commit is contained in:
Liyas Thomas
2020-03-20 19:39:48 +05:30
parent ec9954fc34
commit b14adc29f5

View File

@@ -1544,7 +1544,11 @@ export default {
"text/plain",
],
canListParameters() {
return this.contentType === "application/x-www-form-urlencoded"
return [
"application/json",
"application/hal+json",
"application/x-www-form-urlencoded",
].includes(this.contentType)
},
uri: {
get() {