n8n/packages/nodes-base/credentials/TaigaServerApi.credentials.ts
2020-09-21 11:11:02 +02:00

32 lines
620 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TaigaServerApi implements ICredentialType {
name = 'taigaServerApi';
displayName = 'Taiga Server API';
documentationUrl = 'taiga';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'URL',
name: 'url',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://taiga.yourdomain.com',
},
];
}