mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
🔨 Add missing documentationUrl variables
This commit is contained in:
parent
9e97722c63
commit
f3b136abee
|
@ -9,6 +9,7 @@ export class AsanaOAuth2Api implements ICredentialType {
|
|||
'oAuth2Api',
|
||||
];
|
||||
displayName = 'Asana OAuth2 API';
|
||||
documentationUrl = 'asana';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Authorization URL',
|
||||
|
|
|
@ -9,6 +9,7 @@ export class ClickUpOAuth2Api implements ICredentialType {
|
|||
'oAuth2Api',
|
||||
];
|
||||
displayName = 'ClickUp OAuth2 API';
|
||||
documentationUrl = 'clickUp';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Authorization URL',
|
||||
|
|
|
@ -10,6 +10,7 @@ export class LinkedInOAuth2Api implements ICredentialType {
|
|||
'oAuth2Api',
|
||||
];
|
||||
displayName = 'LinkedIn OAuth2 API';
|
||||
documentationUrl = 'linkedIn';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Organization Support',
|
||||
|
|
|
@ -9,6 +9,7 @@ export class MicrosoftTeamsOAuth2Api implements ICredentialType {
|
|||
'microsoftOAuth2Api',
|
||||
];
|
||||
displayName = 'Microsoft OAuth2 API';
|
||||
documentationUrl = 'microsoft';
|
||||
properties = [
|
||||
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
||||
{
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
export class SentryIoServerApi implements ICredentialType {
|
||||
name = 'sentryIoServerApi';
|
||||
displayName = 'Sentry.io API';
|
||||
documentationUrl = 'sentryIo';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Token',
|
||||
|
|
|
@ -6,7 +6,7 @@ import {
|
|||
export class Sftp implements ICredentialType {
|
||||
name = 'sftp';
|
||||
displayName = 'SFTP';
|
||||
documentationUrl = 'sftp';
|
||||
documentationUrl = 'ftp';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Host',
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
export class TaigaCloudApi implements ICredentialType {
|
||||
name = 'taigaCloudApi';
|
||||
displayName = 'Taiga Cloud API';
|
||||
documentationUrl = 'taiga';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Username',
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
export class TaigaServerApi implements ICredentialType {
|
||||
name = 'taigaServerApi';
|
||||
displayName = 'Taiga Server API';
|
||||
documentationUrl = 'taiga';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Username',
|
||||
|
|
|
@ -9,6 +9,7 @@ export class TodoistOAuth2Api implements ICredentialType {
|
|||
'oAuth2Api',
|
||||
];
|
||||
displayName = 'Todoist OAuth2 API';
|
||||
documentationUrl = 'todoist';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Authorization URL',
|
||||
|
|
Loading…
Reference in a new issue