mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
19 lines
514 B
TypeScript
19 lines
514 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/oauth-single-service';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|