Add Wekan-Node (#1043)

* Add Wekan node

* :zap Improvements to #1026

*  Small improvements

Co-authored-by: Dokime <jnau5@yahoo.com>
This commit is contained in:
Ricardo Espinoza
2020-10-13 07:00:14 -04:00
committed by GitHub
parent 7f33ff8c3c
commit b6f566fc61
11 changed files with 3601 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class WekanApi implements ICredentialType {
name = 'wekanApi';
displayName = 'Wekan API';
documentationUrl = 'wekan';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'URL',
name: 'url',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://wekan.yourdomain.com',
},
];
}