mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
6a53c2a375
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Marcus <marcus@n8n.io>
24 lines
491 B
TypeScript
24 lines
491 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class DiscordWebhookApi implements ICredentialType {
|
|
name = 'discordWebhookApi';
|
|
|
|
displayName = 'Discord Webhook';
|
|
|
|
documentationUrl = 'discord';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Webhook URL',
|
|
name: 'webhookUri',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
placeholder: 'https://discord.com/api/webhooks/ID/TOKEN',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
},
|
|
];
|
|
}
|