🔀 Merge branch 'disqus-node' of https://github.com/Kiprosh/n8n into Kiprosh-disqus-node

This commit is contained in:
Jan Oberhauser
2020-01-23 12:12:44 -08:00
5 changed files with 778 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class DisqusApi implements ICredentialType {
name = 'disqusApi';
displayName = 'Disqus API';
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>.'
},
];
}