feat(n8n Form Trigger Node): Option to remove attribution (#9162)

This commit is contained in:
Michael Kret
2024-04-19 11:26:19 +03:00
committed by GitHub
parent 85780eade5
commit 699fd70c24
5 changed files with 56 additions and 32 deletions

View File

@@ -81,7 +81,18 @@ const descriptionV2: INodeTypeDescription = {
responseMode: ['responseNode'],
},
},
options: [respondWithOptions],
options: [
{
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
displayName: 'Append n8n Attribution',
name: 'appendAttribution',
type: 'boolean',
default: true,
description:
'Whether to include the link “Form automated with n8n” at the bottom of the form',
},
respondWithOptions,
],
},
],
};