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

41 lines
646 B
TypeScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
import {
ICredentialType,
INodeProperties,
2019-06-23 03:35:23 -07:00
} from 'n8n-workflow';
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
];
}