mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
600013a1ab
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
32 lines
560 B
TypeScript
32 lines
560 B
TypeScript
import type { ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
|
|
|
|
export class HttpBasicAuth implements ICredentialType {
|
|
name = 'httpBasicAuth';
|
|
|
|
displayName = 'Basic Auth';
|
|
|
|
documentationUrl = 'httpRequest';
|
|
|
|
genericAuth = true;
|
|
|
|
icon: Icon = 'node:n8n-nodes-base.httpRequest';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
},
|
|
];
|
|
}
|