mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00: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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user