mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b6f566fc61
* Add Wekan node * :zap Improvements to #1026 * ⚡ Small improvements Co-authored-by: Dokime <jnau5@yahoo.com>
32 lines
601 B
TypeScript
32 lines
601 B
TypeScript
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',
|
|
},
|
|
];
|
|
}
|