mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
⚡ Add documentationUrls for several nodes (#940)
This commit is contained in:
parent
3295e46b3a
commit
b7d46262da
|
@ -7,6 +7,7 @@ import {
|
||||||
export class ContentfulApi implements ICredentialType {
|
export class ContentfulApi implements ICredentialType {
|
||||||
name = 'contentfulApi';
|
name = 'contentfulApi';
|
||||||
displayName = 'Contenful API';
|
displayName = 'Contenful API';
|
||||||
|
documentationUrl = 'contentful';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Space ID',
|
displayName: 'Space ID',
|
||||||
|
|
|
@ -7,6 +7,7 @@ import {
|
||||||
export class ConvertKitApi implements ICredentialType {
|
export class ConvertKitApi implements ICredentialType {
|
||||||
name = 'convertKitApi';
|
name = 'convertKitApi';
|
||||||
displayName = 'ConvertKit API';
|
displayName = 'ConvertKit API';
|
||||||
|
documentationUrl = 'convertKit';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'API Secret',
|
displayName: 'API Secret',
|
||||||
|
|
|
@ -6,6 +6,7 @@ import {
|
||||||
export class SentryIoApi implements ICredentialType {
|
export class SentryIoApi implements ICredentialType {
|
||||||
name = 'sentryIoApi';
|
name = 'sentryIoApi';
|
||||||
displayName = 'Sentry.io API';
|
displayName = 'Sentry.io API';
|
||||||
|
documentationUrl = 'sentryIo';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Token',
|
displayName: 'Token',
|
||||||
|
|
|
@ -9,6 +9,7 @@ export class SentryIoOAuth2Api implements ICredentialType {
|
||||||
'oAuth2Api',
|
'oAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'Sentry.io OAuth2 API';
|
displayName = 'Sentry.io OAuth2 API';
|
||||||
|
documentationUrl = 'sentryIo';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
|
|
Loading…
Reference in a new issue