n8n/packages/nodes-base/credentials/GooglePerspectiveOAuth2Api.credentials.ts
Iván Ovejero fa05d7557b
Simplify more property types in credentials classes (#2211)
*  Simplify more property types

* 👕 Fix lint
2021-10-07 23:07:56 +02:00

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(' '),
},
];
}