mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
⚡ Add Add Tags and Remove Tags fields to contact:update (#1229)
As requested here https://community.n8n.io/t/can-we-have-automizy-integration-node-got-created/2368/13
This commit is contained in:
parent
7d3d907a77
commit
3c2d75ce68
|
@ -380,6 +380,16 @@ export const contactFields = [
|
||||||
default: {},
|
default: {},
|
||||||
placeholder: 'Add Field',
|
placeholder: 'Add Field',
|
||||||
options: [
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Add Tags',
|
||||||
|
name: 'addTags',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getTags',
|
||||||
|
},
|
||||||
|
default: [],
|
||||||
|
description: 'The tags you want to add to the contact.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Custom Fields',
|
displayName: 'Custom Fields',
|
||||||
name: 'customFieldsUi',
|
name: 'customFieldsUi',
|
||||||
|
@ -416,6 +426,16 @@ export const contactFields = [
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Remove Tags',
|
||||||
|
name: 'removeTags',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getTags',
|
||||||
|
},
|
||||||
|
default: [],
|
||||||
|
description: 'The tags you want to add to the contact.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Status',
|
displayName: 'Status',
|
||||||
name: 'status',
|
name: 'status',
|
||||||
|
|
Loading…
Reference in a new issue