mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
60d66426ff
* 🔥 Remove Prettier exceptions * 👕 Start linting on formatting * ⚡ Update `format` command * 🎨 Apply formatting
46 lines
834 B
TypeScript
46 lines
834 B
TypeScript
import {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
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: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'user-agent': 'n8n',
|
|
'X-Rundeck-Auth-Token': '={{$credentials?.token}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{$credentials.url}}',
|
|
url: '/api/14/system/info',
|
|
method: 'GET',
|
|
},
|
|
};
|
|
}
|