mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
47 lines
1,022 B
TypeScript
47 lines
1,022 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class GotifyApi implements ICredentialType {
|
|
name = 'gotifyApi';
|
|
|
|
displayName = 'Gotify API';
|
|
|
|
documentationUrl = 'gotify';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'App API Token',
|
|
name: 'appApiToken',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
description: '(Optional) Needed for message creation',
|
|
},
|
|
{
|
|
displayName: 'Client API Token',
|
|
name: 'clientApiToken',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
description: '(Optional) Needed for everything (delete, getAll) but message creation',
|
|
},
|
|
{
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The URL of the Gotify host',
|
|
},
|
|
{
|
|
displayName: 'Ignore SSL Issues',
|
|
name: 'ignoreSSLIssues',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to connect even if SSL certificate validation is not possible',
|
|
},
|
|
];
|
|
}
|