mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
4a209e1dd9
* ⚡️ Enable passord type on value * ⚡️ Enable password type on query auth cred
41 lines
729 B
TypeScript
41 lines
729 B
TypeScript
import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class HttpHeaderAuth implements ICredentialType {
|
|
name = 'httpHeaderAuth';
|
|
|
|
displayName = 'Header Auth';
|
|
|
|
documentationUrl = 'httpRequest';
|
|
|
|
genericAuth = true;
|
|
|
|
icon = 'node:n8n-nodes-base.httpRequest';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Name',
|
|
name: 'name',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'={{$credentials.name}}': '={{$credentials.value}}',
|
|
},
|
|
},
|
|
};
|
|
}
|