mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
32 lines
581 B
TypeScript
32 lines
581 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class RocketchatApi implements ICredentialType {
|
|
name = 'rocketchatApi';
|
|
displayName = 'Rocket API';
|
|
properties = [
|
|
{
|
|
displayName: 'User Id',
|
|
name: 'userId',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Auth Key',
|
|
name: 'authKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Domain',
|
|
name: 'domain',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'https://n8n.rocket.chat',
|
|
},
|
|
];
|
|
}
|