mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
add authentication
This commit is contained in:
14
packages/nodes-base/credentials/ZoomApi.credentials.ts
Normal file
14
packages/nodes-base/credentials/ZoomApi.credentials.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
|
||||
|
||||
export class ZoomApi implements ICredentialType {
|
||||
name = 'zoomApi';
|
||||
displayName = 'Zoom API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Access Token',
|
||||
name: 'accessToken',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: ''
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user