n8n/packages/nodes-base/credentials/RocketchatApi.credentials.ts
Iván Ovejero ecd3bbfcd3
Fix credential formatting issues (#3134)
* 👕 Autofix creds lint issues

* 👕 Manually fix creds lint issues

* 👕 Fix indentation

* ✏️ Fix typo

* 👕 Fix indentation

* ✏️ Fix typo
2022-04-14 08:32:27 +02:00

33 lines
569 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class RocketchatApi implements ICredentialType {
name = 'rocketchatApi';
displayName = 'Rocket API';
documentationUrl = 'rocketchat';
properties: INodeProperties[] = [
{
displayName: 'User ID',
name: 'userId',
type: 'string',
default: '',
},
{
displayName: 'Auth Key',
name: 'authKey',
type: 'string',
default: '',
},
{
displayName: 'Domain',
name: 'domain',
type: 'string',
default: '',
placeholder: 'https://n8n.rocket.chat',
},
];
}