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

19 lines
348 B
TypeScript
Raw Normal View History

2020-04-05 18:06:23 -07:00
import {
ICredentialType,
INodeProperties,
2020-04-05 18:06:23 -07:00
} from 'n8n-workflow';
export class PagerDutyApi implements ICredentialType {
name = 'pagerDutyApi';
displayName = 'PagerDuty API';
documentationUrl = 'pagerDuty';
properties: INodeProperties[] = [
2020-04-05 18:06:23 -07:00
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
2020-04-05 18:06:23 -07:00
default: '',
},
];
}