Remove testing output

Ryan Blenis committed Nov 6, 2019 at 04:49 UTC bf1e4cc91f467d703e2d02f1dafa170820f23e20
2 files changed +3 -1
meshuser.js
+1 -1
@@ -3134,7 +3134,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3134 //parent.parent.pluginHandler.addPlugin(command.url)
3135 parent.parent.pluginHandler.getPluginConfig(command.url)
3136 .then(parent.parent.pluginHandler.addPlugin)
3137 - .then(function(docs){ console.log('landed');
3137 + .then(function(docs){
3138 var targets = ['*', 'server-users'];
3139 parent.parent.DispatchEvent(targets, obj, { action: 'updatePluginList', list: docs });
3140 })
views/default.handlebars
+2
@@ -9464,6 +9464,8 @@
9464 var cant_action = [];
9465 if (p.hasAdminPanel == true) {
9466 p.nameHtml = `<a onclick="return goPlugin('${p.shortName}', '${p.name}');">${p.name}</a>`;
9467 + } else {
9468 + p.nameHtml = p.name;
9469 }
9470 p.statusText = statusMap[p.status].text;
9471 p.statusColor = statusMap[p.status].color;