Add Taiga Integration (#939)

* 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>
This commit is contained in:
Ricardo Espinoza
2020-09-17 17:20:12 -04:00
committed by GitHub
parent 1461e08478
commit bbfe59c211
9 changed files with 1137 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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: '',
},
];
}