Add GSuite Admin Node (#992)

*  GSuite Admin Node

*  Improvements
This commit is contained in:
Ricardo Espinoza
2020-10-03 12:09:07 -04:00
committed by GitHub
parent 1a80a6afed
commit f58e336d5f
6 changed files with 1421 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
const scopes = [
'https://www.googleapis.com/auth/admin.directory.user',
'https://www.googleapis.com/auth/admin.directory.domain.readonly',
'https://www.googleapis.com/auth/admin.directory.userschema.readonly',
];
export class GSuiteAdminOAuth2Api implements ICredentialType {
name = 'gSuiteAdminOAuth2Api';
extends = [
'googleOAuth2Api',
];
displayName = 'G Suite Admin OAuth2 API';
documentationUrl = 'google';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(' '),
},
];
}