mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
24 lines
693 B
TypeScript
24 lines
693 B
TypeScript
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/admin.directory.group',
|
|
'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 = 'Google Workspace Admin OAuth2 API';
|
|
documentationUrl = 'google';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|