Updated POST request body to react to the Content Type

This commit is contained in:
Andrew Bastin
2020-02-23 23:24:23 -05:00
parent 5936a06ad1
commit fa339a5183

View File

@@ -375,7 +375,7 @@
<label for="rawBody">{{ $t("raw_request_body") }}</label>
<Editor
v-model="rawParams"
:lang="'json'"
:lang="rawInputEditorLang"
:options="{
maxLines: '16',
minLines: '8',
@@ -1385,6 +1385,7 @@ import AceEditor from "../components/ace-editor";
import { tokenRequest, oauthRedirect } from "../assets/js/oauth";
import { sendNetworkRequest } from "../functions/network";
import { fb } from "../functions/fb";
import { getEditorLangForMimeType } from "~/functions/editorutils";
const statusCategories = [
{
@@ -1808,6 +1809,9 @@ export default {
this.$store.commit("setState", { value, attribute: "rawInput" });
}
},
rawInputEditorLang() {
return getEditorLangForMimeType(this.contentType);
},
requestType: {
get() {
return this.$store.state.request.requestType;