mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
27 lines
496 B
TypeScript
27 lines
496 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/calendar',
|
|
'https://www.googleapis.com/auth/calendar.events',
|
|
];
|
|
|
|
export class TestOAuth2Api implements ICredentialType {
|
|
name = 'testOAuth2Api';
|
|
extends = [
|
|
'googleOAuth2Api',
|
|
];
|
|
displayName = 'Test OAuth2 API';
|
|
properties = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'asdf',
|
|
},
|
|
];
|
|
}
|