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

This commit is contained in:
Jan Oberhauser
2019-10-27 21:47:59 +01:00
4 changed files with 318 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MongoDB implements ICredentialType {
name = 'mongodb';
displayName = 'MongoDB';
properties = [
{
displayName: 'Host',
name: 'host',
type: 'string' as NodePropertyTypes,
default: 'localhost',
},
{
displayName: 'Database',
name: 'database',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'User',
name: 'user',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number' as NodePropertyTypes,
default: 0
},
];
}