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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
531 B
TypeScript
Raw Normal View History

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