mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
45 lines
853 B
TypeScript
45 lines
853 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class ZammadBasicAuthApi implements ICredentialType {
|
||
|
name = 'zammadBasicAuthApi';
|
||
|
displayName = 'Zammad Basic Auth API';
|
||
|
documentationUrl = 'zammad';
|
||
|
properties: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Base URL',
|
||
|
name: 'baseUrl',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
placeholder: 'https://n8n-helpdesk.zammad.com',
|
||
|
required: true,
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Email',
|
||
|
name: 'username',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
placeholder: 'helpdesk@n8n.io',
|
||
|
required: true,
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Password',
|
||
|
name: 'password',
|
||
|
type: 'string',
|
||
|
typeOptions: {
|
||
|
password: true,
|
||
|
},
|
||
|
default: '',
|
||
|
required: true,
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Ignore SSL Issues',
|
||
|
name: 'allowUnauthorizedCerts',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
},
|
||
|
];
|
||
|
}
|