add authentication

This commit is contained in:
shraddha shaligram
2020-06-16 17:46:38 -07:00
parent 717c43b21f
commit 355ccc3201
6 changed files with 298 additions and 0 deletions

View 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: ''
}
];
}