mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
a1f0fff9fc
* ✨ Expand Taiga node * ⚡ Make projectId consistent * 🔥 Remove logging * 🔨 Fix user story statuses loader * ⚡ Add epics loader * 🔨 Make projectId required for updates * 🔨 Refactor credentials * ⚡ Small change * ⚡ Update credentials in trigger * 🔥 Remove old unused credentials * ✏️ Write breaking changes Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
55 lines
893 B
TypeScript
55 lines
893 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class TaigaApi implements ICredentialType {
|
|
name = 'taigaApi';
|
|
displayName = 'Taiga API';
|
|
documentationUrl = 'taiga';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Environment',
|
|
name: 'environment',
|
|
type: 'options',
|
|
default: 'cloud',
|
|
options: [
|
|
{
|
|
name: 'Cloud',
|
|
value: 'cloud',
|
|
},
|
|
{
|
|
name: 'Self-Hosted',
|
|
value: 'selfHosted',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'https://taiga.yourdomain.com',
|
|
displayOptions: {
|
|
show: {
|
|
environment: [
|
|
'selfHosted',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
}
|