bitbucket trigger

This commit is contained in:
Ricardo Espinoza
2020-01-05 18:47:55 -05:00
parent 9c196416cd
commit 9e0ba42945
5 changed files with 449 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BitbucketApi implements ICredentialType {
name = 'bitbucketApi';
displayName = 'Bitbucket API';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'APP Password',
name: 'appPassword',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}