Remove link.fish integration

This commit is contained in:
Jan Oberhauser
2020-10-12 10:20:32 +02:00
parent 4573d503dc
commit 7950c38f5a
5 changed files with 15 additions and 378 deletions

View File

@@ -1,26 +0,0 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class LinkFishApi implements ICredentialType {
name = 'linkFishApi';
displayName = 'link.fish API';
documentationUrl = 'linkFish';
properties = [
{
displayName: 'Email',
name: 'email',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Api Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}