🐛 Fix bug with Typeform OAuth2 flow (#1402)

This commit is contained in:
Ricardo Espinoza
2021-02-04 03:58:33 -05:00
committed by GitHub
parent 049bf6bee8
commit 7226b5071e
5 changed files with 16 additions and 7 deletions

View File

@@ -9,7 +9,6 @@ const scopes = [
'forms:read',
];
export class TypeformOAuth2Api implements ICredentialType {
name = 'typeformOAuth2Api';
extends = [
@@ -36,7 +35,7 @@ export class TypeformOAuth2Api implements ICredentialType {
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(','),
default: scopes.join(' '),
},
{
displayName: 'Auth URI Query Parameters',