Small fixes and changes to MongoDB-Node

This commit is contained in:
Jan Oberhauser
2019-10-27 22:45:48 +01:00
parent 75a25431d1
commit a23f3fdbbc
4 changed files with 33 additions and 25 deletions

View File

@@ -4,8 +4,8 @@ import {
} from 'n8n-workflow';
export class MongoDB implements ICredentialType {
name = 'mongodb';
export class MongoDb implements ICredentialType {
name = 'mongoDb';
displayName = 'MongoDB';
properties = [
{
@@ -39,7 +39,7 @@ export class MongoDB implements ICredentialType {
displayName: 'Port',
name: 'port',
type: 'number' as NodePropertyTypes,
default: 0
default: 27017,
},
];
}