mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Expand Taiga node (#1970)
* ✨ 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>
This commit is contained in:
54
packages/nodes-base/credentials/TaigaApi.credentials.ts
Normal file
54
packages/nodes-base/credentials/TaigaApi.credentials.ts
Normal file
@@ -0,0 +1,54 @@
|
||||
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',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user