mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Respond to Webhook Node): Additional output branch - Response (#13734)
This commit is contained in:
16
packages/nodes-base/nodes/RespondToWebhook/utils.ts
Normal file
16
packages/nodes-base/nodes/RespondToWebhook/utils.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
export const configuredOutputs = (version: number) => {
|
||||
if (version >= 1.3) {
|
||||
return [
|
||||
{
|
||||
type: 'main',
|
||||
displayName: 'Input Data',
|
||||
},
|
||||
{
|
||||
type: 'main',
|
||||
displayName: 'Response',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
return ['main'];
|
||||
};
|
||||
Reference in New Issue
Block a user