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

29 lines
469 B
TypeScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class HttpBasicAuth implements ICredentialType {
name = 'httpBasicAuth';
displayName = 'Basic Auth';
properties = [
{
displayName: 'User',
name: 'user',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
default: '',
},
];
}