feat(WebhookHelpers.ts, Webhook.node.ts): no body response for webhook

no body response for webhook response. This may be helpful if certain
services require that a response doesn't have a body
This commit is contained in:
Justin Halter
2022-02-18 08:58:40 -06:00
parent ce9cca82b1
commit d1290075ed
2 changed files with 24 additions and 1 deletions

View File

@@ -165,6 +165,11 @@ export class Webhook implements INodeType {
value: 'responseNode',
description: 'Response defined in that node',
},
{
name: 'No Body Response',
value: 'noBodyResponse',
description: 'Returns data without a body',
},
],
default: 'onReceived',
description: 'When and how to respond to the webhook.',