🔀 Merge branch 'feature/pagerduty-node' of https://github.com/RicardoE105/n8n into RicardoE105-feature/pagerduty-node

This commit is contained in:
Jan Oberhauser
2020-04-06 14:09:09 +02:00
9 changed files with 1469 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PagerDutyApi implements ICredentialType {
name = 'pagerDutyApi';
displayName = 'PagerDuty API';
properties = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}