n8n/packages/nodes-base/credentials/Redis.credentials.ts

37 lines
642 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2019-06-23 03:35:23 -07:00
export class Redis implements ICredentialType {
name = 'redis';
displayName = 'Redis';
documentationUrl = 'redis';
properties: INodeProperties[] = [
2019-06-23 03:35:23 -07:00
{
displayName: 'Password',
name: 'password',
type: 'string',
2019-06-23 03:35:23 -07:00
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
2019-06-23 03:35:23 -07:00
default: 'localhost',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
2019-06-23 03:35:23 -07:00
default: 6379,
},
{
displayName: 'Database Number',
name: 'database',
type: 'number',
default: 0,
},
2019-06-23 03:35:23 -07:00
];
}