n8n/packages/nodes-base/credentials/PushoverApi.credentials.ts

19 lines
340 B
TypeScript
Raw Normal View History

2020-10-21 14:30:07 -07:00
import {
ICredentialType,
INodeProperties,
2020-10-21 14:30:07 -07:00
} from 'n8n-workflow';
export class PushoverApi implements ICredentialType {
name = 'pushoverApi';
displayName = 'Pushover API';
documentationUrl = 'pushover';
properties: INodeProperties[] = [
2020-10-21 14:30:07 -07:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-10-21 14:30:07 -07:00
default: '',
},
];
}