Small changes to Facebook Trigger Node

This commit is contained in:
Jan Oberhauser
2020-11-04 12:26:09 +01:00
parent ff9964e10b
commit d80d486e59
4 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FacebookGraphAppApi implements ICredentialType {
name = 'facebookGraphAppApi';
displayName = 'Facebook Graph API (App)';
extends = [
'facebookGraphApi',
];
properties = [
{
displayName: 'App Secret',
name: 'appSecret',
type: 'string' as NodePropertyTypes,
default: '',
description: '(Optional) When the app secret is set the node will verify this signature to validate the integrity and origin of the payload.',
},
];
}