Fix Pushover-Node

This commit is contained in:
Jan Oberhauser
2020-10-21 23:32:07 +02:00
parent ea2902816f
commit b9fc0b0ccf
3 changed files with 8 additions and 8 deletions

View File

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