Add Google Perspective node (#1807)

*  add google perspective node

*  add language option

*  fix lint issues

*  Cleanup

* 🔥 Remove logging

*  Type all languages

*  Improvements

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
Lorena Ciutacu
2021-08-01 13:27:57 +02:00
committed by GitHub
parent ea29bc604d
commit f900bfe897
7 changed files with 435 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import {
ICredentialType,
NodePropertyTypes,
} 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 = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(' '),
},
];
}