mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-28 01:04:05 +00:00
Add only xml support to http monitors
This commit is contained in:
parent
f6919aef1d
commit
3adc9e65d6
2 changed files with 10 additions and 20 deletions
|
@ -257,10 +257,7 @@ class Monitor extends BeanModel {
|
||||||
contentType = "application/json";
|
contentType = "application/json";
|
||||||
} else if (this.body && (this.httpBodyEncoding === "xml")) {
|
} else if (this.body && (this.httpBodyEncoding === "xml")) {
|
||||||
bodyValue = this.body;
|
bodyValue = this.body;
|
||||||
contentType = "text/xml";
|
contentType = "text/xml; charset=utf-8";
|
||||||
} else if (this.body && (this.httpBodyEncoding === "form")) {
|
|
||||||
bodyValue = this.body;
|
|
||||||
contentType = "application/x-www-form-urlencoded";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
|
|
|
@ -442,15 +442,8 @@
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="httpBodyEncoding" class="form-label">{{ $t("Body Encoding") }}</label>
|
<label for="httpBodyEncoding" class="form-label">{{ $t("Body Encoding") }}</label>
|
||||||
<select id="httpBodyEncoding" v-model="monitor.httpBodyEncoding" class="form-select">
|
<select id="httpBodyEncoding" v-model="monitor.httpBodyEncoding" class="form-select">
|
||||||
<option value="json">
|
<option value="json">JSON</option>
|
||||||
JSON
|
<option value="xml">XML</option>
|
||||||
</option>
|
|
||||||
<option value="form">
|
|
||||||
x-www-form-urlencoded
|
|
||||||
</option>
|
|
||||||
<option value="xml">
|
|
||||||
XML
|
|
||||||
</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue