Added RCON Response box
This commit is contained in:
parent
41c0a69add
commit
50a7c545a8
@ -107,7 +107,17 @@ $(document).ready(function () {
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
console.log(data.message)
|
||||
alert(data.message);
|
||||
if(apiEndpoint == '/api/rcon') {
|
||||
if (data.message.includes("Response received")) {
|
||||
$('#rconResultBox').show();
|
||||
$('#rconResultText').text(data.message.split("Command sent! Response received:")[1]);
|
||||
} else {
|
||||
$('#rconResultBox').hide();
|
||||
alert(data.message);
|
||||
}
|
||||
} else {
|
||||
alert(data.message);
|
||||
}
|
||||
} else if (response.status == 401) {
|
||||
alert('Unauthorized, please reload and relogin.');
|
||||
}
|
||||
|
@ -263,6 +263,10 @@
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div id="rconResultBox" class="alert alert-primary" style="display: none;">
|
||||
<strong>RCON Response:</strong>
|
||||
<p id="rconResultText"></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user