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
32 lines
542 B
TypeScript
32 lines
542 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class HttpQueryAuth implements ICredentialType {
|
|
name = 'httpQueryAuth';
|
|
|
|
displayName = 'Query 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: '',
|
|
},
|
|
];
|
|
}
|