mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -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: {},
|
||||
placeholder: 'Add Field',
|
||||
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',
|
||||
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',
|
||||
name: 'status',
|
||||
|
|
Loading…
Reference in a new issue