1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

Improvements to Typeform-Node

This commit is contained in:
ricardo 2020-06-14 19:31:45 -04:00
parent 35e838800b
commit c4bbb961a2

View File

@ -3,6 +3,12 @@ import {
NodePropertyTypes,
} from 'n8n-workflow';
const scopes = [
'webhooks:write',
'webhooks:read',
'forms:read',
];
export class TypeformOAuth2Api implements ICredentialType {
name = 'typeformOAuth2Api';
@ -28,8 +34,8 @@ export class TypeformOAuth2Api implements ICredentialType {
{
displayName: 'Scope',
name: 'scope',
type: 'string' as NodePropertyTypes,
default: 'webhooks:write,webhooks:read,forms:read,',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(','),
},
{
displayName: 'Auth URI Query Parameters',