mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
27 lines
483 B
TypeScript
27 lines
483 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class RundeckApi implements ICredentialType {
|
|
name = 'rundeckApi';
|
|
displayName = 'Rundeck API';
|
|
documentationUrl = 'rundeck';
|
|
properties = [
|
|
{
|
|
displayName: 'Url',
|
|
name: 'url',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'http://127.0.0.1:4440',
|
|
},
|
|
{
|
|
displayName: 'Token',
|
|
name: 'token',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|