mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
feat: Add crowd.dev node and trigger node (#6082)
This commit is contained in:
27
packages/nodes-base/nodes/CrowdDev/descriptions/shared.ts
Normal file
27
packages/nodes-base/nodes/CrowdDev/descriptions/shared.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const emailsField: INodeProperties = {
|
||||
displayName: 'Emails',
|
||||
name: 'emails',
|
||||
description: 'Email addresses of the member',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Item Choice',
|
||||
name: 'itemChoice',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Email',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
placeholder: 'name@email.com',
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user