mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
34 lines
615 B
TypeScript
34 lines
615 B
TypeScript
import type { ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
|
|
|
|
export class HttpDigestAuth implements ICredentialType {
|
|
name = 'httpDigestAuth';
|
|
|
|
displayName = 'Digest Auth';
|
|
|
|
documentationUrl = 'httprequest';
|
|
|
|
genericAuth = true;
|
|
|
|
icon: Icon = 'node:n8n-nodes-base.httpRequest';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'string',
|
|
default: '',
|
|
resolvableField: true,
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
resolvableField: true,
|
|
},
|
|
];
|
|
}
|