n8n/packages/nodes-base/credentials/JiraSoftwareCloudApi.credentials.ts
2021-06-12 18:39:55 +02:00

32 lines
588 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class JiraSoftwareCloudApi implements ICredentialType {
name = 'jiraSoftwareCloudApi';
displayName = 'Jira SW Cloud API';
documentationUrl = 'jira';
properties: INodeProperties[] = [
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
default: '',
},
{
displayName: 'Domain',
name: 'domain',
type: 'string',
default: '',
placeholder: 'https://example.atlassian.net',
},
];
}