n8n/packages/nodes-base/credentials/GotifyApi.credentials.ts

34 lines
727 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-11-10 10:15:56 -08:00
export class GotifyApi implements ICredentialType {
name = 'gotifyApi';
2020-11-10 10:15:56 -08:00
displayName = 'Gotify API';
documentationUrl = 'gotify';
properties: INodeProperties[] = [
2020-11-10 10:15:56 -08:00
{
displayName: 'App API Token',
2020-11-10 10:15:56 -08:00
name: 'appApiToken',
type: 'string',
2020-11-10 10:15:56 -08:00
default: '',
description: '(Optional) Needed for message creation',
2020-11-10 10:15:56 -08:00
},
{
displayName: 'Client API Token',
name: 'clientApiToken',
type: 'string',
2020-11-10 10:15:56 -08:00
default: '',
description: '(Optional) Needed for everything (delete, getAll) but message creation',
2020-11-10 10:15:56 -08:00
},
{
displayName: 'URL',
name: 'url',
type: 'string',
default: '',
description: 'The URL of the Gotify host',
2020-11-10 10:15:56 -08:00
},
];
}