mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
20 lines
489 B
TypeScript
20 lines
489 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class DisqusApi implements ICredentialType {
|
|
name = 'disqusApi';
|
|
displayName = 'Disqus API';
|
|
documentationUrl = 'disqus';
|
|
properties = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
description: 'Visit your account details page, and grab the Access Token. See <a href="https://disqus.com/api/docs/auth/">Disqus auth</a>.'
|
|
},
|
|
];
|
|
}
|