fix(Wait Node): Append n8n attribution option (#10585)

This commit is contained in:
Michael Kret
2024-08-30 16:28:25 +03:00
committed by GitHub
parent ccb553a550
commit 81f4322d45
7 changed files with 25 additions and 26 deletions

View File

@@ -1,4 +1,5 @@
import type { INodeProperties } from 'n8n-workflow';
import { appendAttributionOption } from '../../../../utils/descriptions';
export const messageOperations: INodeProperties[] = [
{
@@ -200,11 +201,7 @@ export const messageFields: INodeProperties[] = [
default: {},
options: [
{
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
displayName: 'Append n8n Attribution',
name: 'appendAttribution',
type: 'boolean',
default: true,
...appendAttributionOption,
description:
'Whether to include the phrase “This email was sent automatically with n8n” to the end of the email',
},