n8n/packages/nodes-base/credentials/FacebookGraphAppApi.credentials.ts
Iván Ovejero ecd3bbfcd3
Fix credential formatting issues (#3134)
* 👕 Autofix creds lint issues

* 👕 Manually fix creds lint issues

* 👕 Fix indentation

* ✏️ Fix typo

* 👕 Fix indentation

* ✏️ Fix typo
2022-04-14 08:32:27 +02:00

23 lines
566 B
TypeScript

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