Add Discord Webhook node

This commit is contained in:
neomaking
2019-10-16 22:53:30 +02:00
parent b8f0585185
commit b8b5ba4e79
4 changed files with 206 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class DiscordApi implements ICredentialType {
name = 'discordApi';
displayName = 'Discord API';
properties = [
{
displayName: 'Webhook URI',
name: 'webhookUri',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}