Small changes to FacebookGraphAPI-Node

This commit is contained in:
Jan Oberhauser
2020-05-02 16:54:21 +02:00
parent c0c281995a
commit 4f83d29afe
3 changed files with 31 additions and 44 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FacebookGraphApi implements ICredentialType {
name = 'facebookGraphApi';
displayName = 'Facebook Graph API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}