n8n/packages/nodes-base/credentials/DisqusApi.credentials.ts

20 lines
489 B
TypeScript
Raw Normal View History

2020-01-21 05:53:54 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class DisqusApi implements ICredentialType {
name = 'disqusApi';
displayName = 'Disqus API';
documentationUrl = 'disqus';
2020-01-21 05:53:54 -08:00
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
2020-01-21 06:12:28 -08:00
default: '',
2020-01-21 05:53:54 -08:00
description: 'Visit your account details page, and grab the Access Token. See <a href="https://disqus.com/api/docs/auth/">Disqus auth</a>.'
},
];
}