Merge pull request #614 from ryanblenis/plugin

Expand Plugin Interactions.
This commit is contained in:
Ylian Saint-Hilaire 2019-10-28 16:02:54 -07:00 committed by GitHub
commit 0ca42e5095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -980,6 +980,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
}
});
}
if (parent.parent.pluginHandler != null) {
parent.parent.pluginHandler.callHook('hook_agentCoreIsStable', obj, parent);
}
}
// Get the web certificate private key hash for the specified domain
@ -1298,6 +1301,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
break;
}
}
if (parent.parent.pluginHandler != null) {
parent.parent.pluginHandler.callHook('hook_processAgentData', command, obj, parent);
}
}
}