mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +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: {},
|
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',
|
||||||
|
|||||||
Reference in New Issue
Block a user