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:
Ricardo Espinoza 2020-12-07 17:53:55 -05:00 committed by GitHub
parent 7d3d907a77
commit 3c2d75ce68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',