Add Pushcut Node & Trigger (#1075)

*  Pushcut Node & Trigger

*  Small improvements

Co-authored-by: Jan <janober@users.noreply.github.com>
This commit is contained in:
Ricardo Espinoza
2020-12-12 02:58:58 -05:00
committed by GitHub
parent 45d413de22
commit 23b61475d9
6 changed files with 415 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PushcutApi implements ICredentialType {
name = 'pushcutApi';
displayName = 'Pushcut API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}