diff --git a/meshagent.js b/meshagent.js index c68b5f60..fcd7a67a 100644 --- a/meshagent.js +++ b/meshagent.js @@ -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); + } } }