rocketchat-node-setup

This commit is contained in:
Ricardo Espinoza
2019-11-08 23:11:01 -05:00
parent f60b8e33f7
commit edc6651a9b
5 changed files with 126 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class RocketchatApi implements ICredentialType {
name = 'rocketchatApi';
displayName = 'Rocket API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}