Add missing Telegram-Credentials

This commit is contained in:
Jan Oberhauser 2019-10-04 14:18:43 +02:00
parent 94d0655740
commit 7ce760f9da

View file

@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TelegramApi implements ICredentialType {
name = 'telegramApi';
displayName = 'Telegram API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}