mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
33 lines
927 B
TypeScript
33 lines
927 B
TypeScript
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,
|
|
};
|
|
}
|