mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-23 03:22:28 -05:00
Fixed plugin protocol in web app
This commit is contained in:
parent
ccf2d46b52
commit
acd39ae7fc
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "meshcentral",
|
"name": "meshcentral",
|
||||||
"version": "0.4.4-w",
|
"version": "0.4.4-x",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Remote Management",
|
"Remote Management",
|
||||||
"Intel AMT",
|
"Intel AMT",
|
||||||
|
@ -133,7 +133,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"_letsencrypt": {
|
"_letsencrypt": {
|
||||||
"__comment__": "Go to https://letsdebug.net/ first before trying Let's Encrypt.",
|
"__comment__": "Requires NodeJS 10.12 or better, Go to https://letsdebug.net/ first before trying Let's Encrypt.",
|
||||||
"email": "myemail@myserver.com ",
|
"email": "myemail@myserver.com ",
|
||||||
"names": "myserver.com,customer1.myserver.com",
|
"names": "myserver.com,customer1.myserver.com",
|
||||||
"rsaKeySize": 3072,
|
"rsaKeySize": 3072,
|
||||||
|
File diff suppressed because one or more lines are too long
@ -59,7 +59,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="termShellContextMenuLinux" class="contextMenu noselect" style="display:none;min-width:0px">
|
<div id="termShellContextMenuLinux" class="contextMenu noselect" style="display:none;min-width:0px">
|
||||||
<div id="cxtermnorm" class="cmtext" onclick="cmtermaction(1,event)"><b>Root Shell</b></div>
|
<div id="cxtermnorm" class="cmtext" onclick="cmtermaction(1,event)"><b>Root Shell</b></div>
|
||||||
<div id="cxtermps" class="cmtext" onclick="cmtermaction(7,event)">User Shell</div>
|
<div id="cxtermps" class="cmtext" onclick="cmtermaction(8,event)">User Shell</div>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<!--
|
||||||
<div id="pluginTabContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
|
<div id="pluginTabContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
|
||||||
|
File diff suppressed because one or more lines are too long
@ -57,7 +57,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="termShellContextMenuLinux" class="contextMenu noselect" style="display:none;min-width:0px">
|
<div id="termShellContextMenuLinux" class="contextMenu noselect" style="display:none;min-width:0px">
|
||||||
<div id="cxtermnorm" class="cmtext" onclick="cmtermaction(1,event)"><b>Root Shell</b></div>
|
<div id="cxtermnorm" class="cmtext" onclick="cmtermaction(1,event)"><b>Root Shell</b></div>
|
||||||
<div id="cxtermps" class="cmtext" onclick="cmtermaction(7,event)">User Shell</div>
|
<div id="cxtermps" class="cmtext" onclick="cmtermaction(8,event)">User Shell</div>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<!--
|
||||||
<div id="pluginTabContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
|
<div id="pluginTabContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
|
||||||
@ -9561,7 +9561,7 @@
|
|||||||
p.actions = '<select onchange="return pluginAction(this,\'' + p._id + '\');"><option value=""> --</option>';
|
p.actions = '<select onchange="return pluginAction(this,\'' + p._id + '\');"><option value=""> --</option>';
|
||||||
var entries = Object.entries(statusAvailability[p.status]);
|
var entries = Object.entries(statusAvailability[p.status]);
|
||||||
for (var k in entries) {
|
for (var k in entries) {
|
||||||
if (cant_action.indexOf(k) === -1) {
|
if (cant_action.indexOf(entries[k][0]) === -1) {
|
||||||
p.actions += '<option value="' + entries[k][0] + '">' + entries[k][1] + '</option>';
|
p.actions += '<option value="' + entries[k][0] + '">' + entries[k][1] + '</option>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user