Remove testing output
This commit is contained in:
parent
7a052eaf69
commit
06dec37ad4
|
@ -3134,7 +3134,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||
//parent.parent.pluginHandler.addPlugin(command.url)
|
||||
parent.parent.pluginHandler.getPluginConfig(command.url)
|
||||
.then(parent.parent.pluginHandler.addPlugin)
|
||||
.then(function(docs){ console.log('landed');
|
||||
.then(function(docs){
|
||||
var targets = ['*', 'server-users'];
|
||||
parent.parent.DispatchEvent(targets, obj, { action: 'updatePluginList', list: docs });
|
||||
})
|
||||
|
|
|
@ -9464,6 +9464,8 @@
|
|||
var cant_action = [];
|
||||
if (p.hasAdminPanel == true) {
|
||||
p.nameHtml = `<a onclick="return goPlugin('${p.shortName}', '${p.name}');">${p.name}</a>`;
|
||||
} else {
|
||||
p.nameHtml = p.name;
|
||||
}
|
||||
p.statusText = statusMap[p.status].text;
|
||||
p.statusColor = statusMap[p.status].color;
|
||||
|
|
Loading…
Reference in New Issue