:sparkles Done

This commit is contained in:
Ricardo Espinoza
2019-11-09 20:29:05 -05:00
parent 526320f26a
commit e9613944db
3 changed files with 251 additions and 25 deletions

View File

@@ -9,10 +9,23 @@ export class RocketchatApi implements ICredentialType {
displayName = 'Rocket API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
displayName: 'User Id',
name: 'userId',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Auth Key',
name: 'authKey',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Sub Domain',
name: 'subdomain',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'n8n'
},
];
}