2020-01-21 05:53:54 -08:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class DisqusApi implements ICredentialType {
|
|
|
|
name = 'disqusApi';
|
|
|
|
displayName = 'Disqus API';
|
2020-08-17 05:42:09 -07:00
|
|
|
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-10-22 06:46:03 -07:00
|
|
|
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
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|