mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-11 02:16:35 +03:00
Added agent notification internalization.
This commit is contained in:
parent
71de4af33d
commit
e39cd672ab
@ -2941,6 +2941,10 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
|
||||
sendPeriodicServerUpdate();
|
||||
break;
|
||||
}
|
||||
case 'agentmsgx': {
|
||||
try { mesh.SendCommand({ action: 'sessions', type: 'msg', value: { 0: { msg: "This is an old agent version, consider updating.", msgid: 117, icon: 3 } } }); } catch (ex) { }
|
||||
break;
|
||||
}
|
||||
case 'agentmsg': {
|
||||
if (args['_'].length == 0) {
|
||||
response = "Proper usage:\r\n agentmsg add \"[message]\" [iconIndex]\r\n agentmsg remove [index]\r\n agentmsg list"; // Display usage
|
||||
|
@ -4309,6 +4309,7 @@
|
||||
for (var i in node.sessions.msg) {
|
||||
var msg = i, icon = 5;
|
||||
if (typeof node.sessions.msg[i].msg == 'string') { msg = node.sessions.msg[i].msg; }
|
||||
if ((typeof node.sessions.msg[i].msgid == 'number') && (eventsMessageId[node.sessions.msg[i].msgid] != null)) { msg = eventsMessageId[node.sessions.msg[i].msgid]; }
|
||||
if (typeof node.sessions.msg[i].icon == 'number') { icon = node.sessions.msg[i].icon; }
|
||||
if ((icon < 1) || (icon > 9)) { icon = 5; }
|
||||
x += '<table style=width:96%><td style=width:24px><div class=NotifyIconSmall' + icon + '></div><td><div style="border-radius:5px;background-color:#BBB;width:100%;padding:8px">' + EscapeHtml(msg) + '</div></table>';
|
||||
@ -12386,7 +12387,8 @@
|
||||
113: "Added push notification authentication device",
|
||||
114: "Removed push notification authentication device",
|
||||
115: "Added login token",
|
||||
116: "Removed login token"
|
||||
116: "Removed login token",
|
||||
117: "This is an old agent version, consider updating.xx"
|
||||
};
|
||||
|
||||
// Highlights the device being hovered
|
||||
|
Loading…
Reference in New Issue
Block a user