Added OAuth2 support

This commit is contained in:
ricardo
2020-05-30 15:09:04 -04:00
parent f1f09d4a03
commit bf02ae4f57
17 changed files with 305 additions and 156 deletions

View File

@@ -0,0 +1,26 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
const scopes = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
'https://www.googleapis.com/auth/spreadsheets',
];
export class GoogleSheetsOAuth2Api implements ICredentialType {
name = 'googleSheetsOAuth2Api';
extends = [
'googleOAuth2Api',
];
displayName = 'Google OAuth2 API';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(' '),
},
];
}