We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ea307 commit 8b760eaCopy full SHA for 8b760ea
webhookrelay.js
@@ -87,7 +87,9 @@ module.exports = function (RED) {
87
}
88
89
this.on('input', function (msg) {
90
- // Nothing to do
+ node.log(`responding to webhook event: '${msg.meta.id}', status: '${msg.status}'`)
91
+ var client = new ws.WebhookRelayClient(node.key, node.secret);
92
+ client.respond(msg)
93
});
94
95
this.on("close", function () {
0 commit comments