Files
n8n-enterprise-unlocked/packages/nodes-base/credentials/JiraApi.credentials.ts
Ricardo Espinoza 1c9a78e624 🎉 node-setup
2019-11-26 15:38:38 -05:00

19 lines
301 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class JiraApi implements ICredentialType {
name = 'jiraApi';
displayName = 'Jira API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}