mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
9ef339e525
* fix(Action Network Node): Pagination
* Fixed lint issue
* Added credential test
* ⚡ Move credentials verification and injection to the credentials file
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
32 lines
807 B
TypeScript
32 lines
807 B
TypeScript
import {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
IHttpRequestOptions,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class ActionNetworkApi implements ICredentialType {
|
|
name = 'actionNetworkApi';
|
|
displayName = 'Action Network API';
|
|
documentationUrl = 'actionNetwork';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://actionnetwork.org/api/v2',
|
|
url: '/events?per_page=1',
|
|
},
|
|
};
|
|
async authenticate(credentials: ICredentialDataDecryptedObject, requestOptions: IHttpRequestOptions): Promise<IHttpRequestOptions> {
|
|
requestOptions.headers = { 'OSDI-API-Token': credentials.apiKey };
|
|
return requestOptions;
|
|
}
|
|
}
|