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,40 @@
import {
INodeProperties,
} from 'n8n-workflow';
export const issueOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
options: [
{
name: 'Create',
value: 'create',
description: 'Create an issue',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an issue',
},
{
name: 'Get',
value: 'get',
description: 'Get an issue',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all issues',
},
{
name: 'Update',
value: 'update',
description: 'Update an issue',
},
],
default: 'create',
description: 'The operation to perform.',
},
] as INodeProperties[];