mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
feat: Add crowd.dev node and trigger node (#6082)
This commit is contained in:
@@ -0,0 +1,129 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import { automationPresend } from '../GenericFunctions';
|
||||
import { mapWith, showFor } from './utils';
|
||||
|
||||
const displayOpts = showFor(['automation']);
|
||||
|
||||
const displayFor = {
|
||||
resource: displayOpts(),
|
||||
createOrUpdate: displayOpts(['create', 'update']),
|
||||
id: displayOpts(['destroy', 'find', 'update']),
|
||||
};
|
||||
|
||||
const automationOperations: INodeProperties = {
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
displayOptions: displayFor.resource.displayOptions,
|
||||
noDataExpression: true,
|
||||
default: 'list',
|
||||
options: [
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new automation for the tenant',
|
||||
action: 'Create a new automation for the tenant',
|
||||
routing: {
|
||||
send: { preSend: [automationPresend] },
|
||||
request: {
|
||||
method: 'POST',
|
||||
url: '/automation',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Destroy',
|
||||
value: 'destroy',
|
||||
description: 'Destroy an existing automation for the tenant',
|
||||
action: 'Destroy an existing automation for the tenant',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'DELETE',
|
||||
url: '=/automation/{{$parameter["id"]}}',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Find',
|
||||
value: 'find',
|
||||
description: 'Get an existing automation data for the tenant',
|
||||
action: 'Get an existing automation data for the tenant',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
url: '=/automation/{{$parameter["id"]}}',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'List',
|
||||
value: 'list',
|
||||
description: 'Get all existing automation data for tenant',
|
||||
action: 'Get all existing automation data for tenant',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
url: '/automation',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Updates an existing automation for the tenant',
|
||||
action: 'Updates an existing automation for the tenant',
|
||||
routing: {
|
||||
send: { preSend: [automationPresend] },
|
||||
request: {
|
||||
method: 'PUT',
|
||||
url: '=/automation/{{$parameter["id"]}}',
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const idField: INodeProperties = {
|
||||
displayName: 'ID',
|
||||
name: 'id',
|
||||
description: 'The ID of the automation',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
};
|
||||
|
||||
const commonFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Trigger',
|
||||
name: 'trigger',
|
||||
description: 'What will trigger an automation',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: 'new_activity',
|
||||
options: [
|
||||
{
|
||||
name: 'New Activity',
|
||||
value: 'new_activity',
|
||||
},
|
||||
{
|
||||
name: 'New Member',
|
||||
value: 'new_member',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
description: 'URL to POST webhook data to',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
|
||||
const automationFields: INodeProperties[] = [
|
||||
Object.assign({}, idField, displayFor.id),
|
||||
...commonFields.map(mapWith(displayFor.createOrUpdate)),
|
||||
];
|
||||
|
||||
export { automationOperations, automationFields };
|
||||
Reference in New Issue
Block a user