mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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',
|
'oAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'Asana OAuth2 API';
|
displayName = 'Asana OAuth2 API';
|
||||||
|
documentationUrl = 'asana';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
|
|
|
@ -9,6 +9,7 @@ export class ClickUpOAuth2Api implements ICredentialType {
|
||||||
'oAuth2Api',
|
'oAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'ClickUp OAuth2 API';
|
displayName = 'ClickUp OAuth2 API';
|
||||||
|
documentationUrl = 'clickUp';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
|
|
|
@ -10,6 +10,7 @@ export class LinkedInOAuth2Api implements ICredentialType {
|
||||||
'oAuth2Api',
|
'oAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'LinkedIn OAuth2 API';
|
displayName = 'LinkedIn OAuth2 API';
|
||||||
|
documentationUrl = 'linkedIn';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Organization Support',
|
displayName: 'Organization Support',
|
||||||
|
|
|
@ -9,6 +9,7 @@ export class MicrosoftTeamsOAuth2Api implements ICredentialType {
|
||||||
'microsoftOAuth2Api',
|
'microsoftOAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'Microsoft OAuth2 API';
|
displayName = 'Microsoft OAuth2 API';
|
||||||
|
documentationUrl = 'microsoft';
|
||||||
properties = [
|
properties = [
|
||||||
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,6 +6,7 @@ import {
|
||||||
export class SentryIoServerApi implements ICredentialType {
|
export class SentryIoServerApi implements ICredentialType {
|
||||||
name = 'sentryIoServerApi';
|
name = 'sentryIoServerApi';
|
||||||
displayName = 'Sentry.io API';
|
displayName = 'Sentry.io API';
|
||||||
|
documentationUrl = 'sentryIo';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Token',
|
displayName: 'Token',
|
||||||
|
|
|
@ -6,7 +6,7 @@ import {
|
||||||
export class Sftp implements ICredentialType {
|
export class Sftp implements ICredentialType {
|
||||||
name = 'sftp';
|
name = 'sftp';
|
||||||
displayName = 'SFTP';
|
displayName = 'SFTP';
|
||||||
documentationUrl = 'sftp';
|
documentationUrl = 'ftp';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Host',
|
displayName: 'Host',
|
||||||
|
|
|
@ -6,6 +6,7 @@ import {
|
||||||
export class TaigaCloudApi implements ICredentialType {
|
export class TaigaCloudApi implements ICredentialType {
|
||||||
name = 'taigaCloudApi';
|
name = 'taigaCloudApi';
|
||||||
displayName = 'Taiga Cloud API';
|
displayName = 'Taiga Cloud API';
|
||||||
|
documentationUrl = 'taiga';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Username',
|
displayName: 'Username',
|
||||||
|
|
|
@ -6,6 +6,7 @@ import {
|
||||||
export class TaigaServerApi implements ICredentialType {
|
export class TaigaServerApi implements ICredentialType {
|
||||||
name = 'taigaServerApi';
|
name = 'taigaServerApi';
|
||||||
displayName = 'Taiga Server API';
|
displayName = 'Taiga Server API';
|
||||||
|
documentationUrl = 'taiga';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Username',
|
displayName: 'Username',
|
||||||
|
|
|
@ -9,6 +9,7 @@ export class TodoistOAuth2Api implements ICredentialType {
|
||||||
'oAuth2Api',
|
'oAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'Todoist OAuth2 API';
|
displayName = 'Todoist OAuth2 API';
|
||||||
|
documentationUrl = 'todoist';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
|
|
Loading…
Reference in a new issue