mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat: Add crowd.dev node and trigger node (#6082)
This commit is contained in:
32
packages/nodes-base/nodes/CrowdDev/CrowdDev.node.ts
Normal file
32
packages/nodes-base/nodes/CrowdDev/CrowdDev.node.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
||||
import { allProperties } from './descriptions';
|
||||
|
||||
export class CrowdDev implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'crowd.dev',
|
||||
name: 'crowdDev',
|
||||
icon: 'file:crowdDev.svg',
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
subtitle: '={{ $parameter["operation"] + ": " + $parameter["resource"] }}',
|
||||
description:
|
||||
'crowd.dev is an open-source suite of community and data tools built to unlock community-led growth for your organization.',
|
||||
defaults: {
|
||||
name: 'crowd.dev',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
credentials: [
|
||||
{
|
||||
name: 'crowdDevApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
requestDefaults: {
|
||||
baseURL: '={{$credentials.url}}/api/tenant/{{$credentials.tenantId}}',
|
||||
json: true,
|
||||
skipSslCertificateValidation: '={{ $credentials.allowUnauthorizedCerts }}',
|
||||
},
|
||||
properties: allProperties,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user