mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add support for Query Auth
This commit is contained in:
27
packages/nodes-base/credentials/HttpQueryAuth.credentials.ts
Normal file
27
packages/nodes-base/credentials/HttpQueryAuth.credentials.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class HttpQueryAuth implements ICredentialType {
|
||||
name = 'httpQueryAuth';
|
||||
displayName = 'Query Auth';
|
||||
documentationUrl = 'httpRequest';
|
||||
icon = 'node:n8n-nodes-base.httpRequest';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
||||
},
|
||||
{
|
||||
displayName: 'Value',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user