mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
fa05d7557b
* ⚡ Simplify more property types * 👕 Fix lint
26 lines
506 B
TypeScript
26 lines
506 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/userinfo.email',
|
|
];
|
|
|
|
export class GooglePerspectiveOAuth2Api implements ICredentialType {
|
|
name = 'googlePerspectiveOAuth2Api';
|
|
extends = [
|
|
'googleOAuth2Api',
|
|
];
|
|
displayName = 'Google Perspective OAuth2 API';
|
|
documentationUrl = 'google';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|