mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
e07da55a1a
* Updated Dropdown Descriptions to match documentation * Removed full stops and hyphens in field descriptions * Removed hyphen on description on line 267 * Fixed typographical errors for Github node * Fixed typo for Zoom Credentials * Changed Postgres node description to match Postgres docs (https://github.com/n8n-io/n8n-docs/pull/30) * Changed Rocketchat displayname to RocketChat * Fixed typographical errors (and matched with docs) for Trello node descriptions * Updated Jira node descriptions to match docs
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
|
|
|
|
export class ZoomApi implements ICredentialType {
|
|
name = 'zoomApi';
|
|
displayName = 'Zoom API';
|
|
properties = [
|
|
{
|
|
displayName: 'JWT Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: ''
|
|
}
|
|
];
|
|
}
|