PagerDuty node

This commit is contained in:
ricardo
2020-04-05 21:06:23 -04:00
parent 174113a879
commit 86f0468e2b
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: '',
},
];
}