hide powerstate with hidepowerstate
Signed-off-by: Simon Smith <simonsmith5521@gmail.com>
This commit is contained in:
parent
6d27ff5969
commit
8b8ec48430
|
@ -1642,6 +1642,11 @@ See description for information about each item.
|
|||
"type": "object",
|
||||
"description": "LDAP options passed to ldapauth-fork"
|
||||
},
|
||||
"hidePowerState": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "When enabled, this will hide the power state table in the web ui"
|
||||
},
|
||||
"agentInviteCodes": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
|
|
|
@ -1640,6 +1640,11 @@
|
|||
"type": "object",
|
||||
"description": "LDAP options passed to ldapauth-fork"
|
||||
},
|
||||
"hidePowerState": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "When enabled, this will hide the power state table in the web ui"
|
||||
},
|
||||
"agentInviteCodes": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
|
|
|
@ -189,6 +189,7 @@
|
|||
"_agentKey": [ "abc", "123" ],
|
||||
"_ipkvm": false,
|
||||
"minify": true,
|
||||
"_hidePowerState": true,
|
||||
"_newAccounts": true,
|
||||
"_newAccountsUserGroups": [ "ugrp//xxxxxxxxxxxxxxxxx" ],
|
||||
"_userNameIsEmail": true,
|
||||
|
|
|
@ -8315,8 +8315,11 @@
|
|||
// Add the language and timezone of the browser to the server so the server can localize the time correctly.
|
||||
var tz = '';
|
||||
try { tz = '&tz=' + encodeURIComponentEx(Intl.DateTimeFormat().resolvedOptions().timeZone); } catch (ex) {}
|
||||
const hidePowerState = {{{hidePowerState}}};
|
||||
if(!hidePowerState){
|
||||
QH('p10html2', '<table cellpadding=2 cellspacing=0><thead><tr style=><th scope=col style=text-align:center;width:150px>' + "Day" + '</th><th scope=col style=text-align:center><a onclick=downloadFile("devicepowerevents.ashx?id=' + currentNode._id + '&tf=' + new Date().getTimezoneOffset() + '&l=' + encodeURIComponentEx(getLang()) + tz + (urlargs.key?('&key=' + urlargs.key):'') + '",null,true)><img title="' + "Download power events" + '" src="images/link4.png" /></a>' + "7 Day Power State" + '</th></tr></thead><tbody>' + x + '</tbody></table>');
|
||||
}
|
||||
}
|
||||
|
||||
// Return a color for the given power state
|
||||
function powerColor(x) { if (x < powerColorTable.length) { return powerColorTable[x]; } return 'pwsYellow'; }
|
||||
|
|
|
@ -3104,7 +3104,8 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
|
|||
amtscanoptions: amtscanoptions,
|
||||
pluginHandler: (parent.pluginHandler == null) ? 'null' : parent.pluginHandler.prepExports(),
|
||||
webRelayPort: ((args.relaydns != null) ? ((typeof args.aliasport == 'number') ? args.aliasport : args.port) : ((parent.webrelayserver != null) ? ((typeof args.relayaliasport == 'number') ? args.relayaliasport : parent.webrelayserver.port) : 0)),
|
||||
webRelayDns: ((args.relaydns != null) ? args.relaydns[0] : '')
|
||||
webRelayDns: ((args.relaydns != null) ? args.relaydns[0] : ''),
|
||||
hidePowerState: (domain.hidepowerstate ? 'true' : 'false')
|
||||
}, dbGetFunc.req, domain), user);
|
||||
}
|
||||
xdbGetFunc.req = req;
|
||||
|
|
Loading…
Reference in New Issue