mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
bbfe59c211
* Add Taiga integration * ⚡ Improvements to Taiga-Node * ⚡ Improvements * ⚡ Small improvements * ⚡ Improvements * ⚡ Change project slug for project id * ⚡ Small improvement Co-authored-by: renanfilipe <renanfilipe10@hotmail.com>
24 lines
436 B
TypeScript
24 lines
436 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class TaigaCloudApi implements ICredentialType {
|
|
name = 'taigaCloudApi';
|
|
displayName = 'Taiga Cloud API';
|
|
properties = [
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|