n8n/packages/nodes-base/credentials/RundeckApi.credentials.ts
2021-06-12 18:39:55 +02:00

27 lines
458 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class RundeckApi implements ICredentialType {
name = 'rundeckApi';
displayName = 'Rundeck API';
documentationUrl = 'rundeck';
properties: INodeProperties[] = [
{
displayName: 'Url',
name: 'url',
type: 'string',
default: '',
placeholder: 'http://127.0.0.1:4440',
},
{
displayName: 'Token',
name: 'token',
type: 'string',
default: '',
},
];
}