mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
29 lines
472 B
TypeScript
29 lines
472 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
|
||
|
export class HttpDigestAuth implements ICredentialType {
|
||
|
name = 'httpDigestAuth';
|
||
|
displayName = 'Digest Auth';
|
||
|
properties = [
|
||
|
{
|
||
|
displayName: 'User',
|
||
|
name: 'user',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Password',
|
||
|
name: 'password',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
typeOptions: {
|
||
|
password: true,
|
||
|
},
|
||
|
default: '',
|
||
|
},
|
||
|
];
|
||
|
}
|