🔀 Merge branch 'gitlab' of https://github.com/lucafaggianelli/n8n into lucafaggianelli-gitlab

This commit is contained in:
Jan Oberhauser
2019-10-25 07:38:56 +02:00
6 changed files with 1289 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class GitlabApi implements ICredentialType {
name = 'gitlabApi';
displayName = 'Gitlab API';
properties = [
{
displayName: 'Gitlab Server',
name: 'server',
type: 'string' as NodePropertyTypes,
default: 'https://gitlab.com'
},
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}