mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
ci: Fix docs urls (no-changelog) (#6433)
This commit is contained in:
parent
32fb419011
commit
004d38d82b
|
@ -1,11 +1,14 @@
|
||||||
/* eslint-disable n8n-nodes-base/cred-class-name-unsuffixed,n8n-nodes-base/cred-class-field-name-unsuffixed,n8n-nodes-base/cred-class-field-display-name-missing-api */
|
|
||||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||||
|
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/cred-class-name-unsuffixed
|
||||||
export class Ldap implements ICredentialType {
|
export class Ldap implements ICredentialType {
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/cred-class-field-name-unsuffixed
|
||||||
name = 'ldap';
|
name = 'ldap';
|
||||||
|
|
||||||
displayName = 'LDAP';
|
displayName = 'LDAP';
|
||||||
|
|
||||||
|
documentationUrl = 'ldap';
|
||||||
|
|
||||||
properties: INodeProperties[] = [
|
properties: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'LDAP Server Address',
|
displayName: 'LDAP Server Address',
|
||||||
|
|
|
@ -10,6 +10,8 @@ export class LoneScaleApi implements ICredentialType {
|
||||||
|
|
||||||
displayName = 'LoneScale API';
|
displayName = 'LoneScale API';
|
||||||
|
|
||||||
|
documentationUrl = 'lonescale';
|
||||||
|
|
||||||
properties: INodeProperties[] = [
|
properties: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName: 'API Key',
|
displayName: 'API Key',
|
||||||
|
|
|
@ -7,14 +7,9 @@
|
||||||
"Core Nodes": ["Helpers"]
|
"Core Nodes": ["Helpers"]
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"credentialDocumentation": [
|
|
||||||
{
|
|
||||||
"url": "https://docs.n8n.io/credentials/executionData"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryDocumentation": [
|
"primaryDocumentation": [
|
||||||
{
|
{
|
||||||
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.executionData/"
|
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.executiondata/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
],
|
],
|
||||||
"primaryDocumentation": [
|
"primaryDocumentation": [
|
||||||
{
|
{
|
||||||
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.ldap/"
|
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.ldap/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue