n8n/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
smamudhan 725d2d16fc
Fixed typos and grammatical errors (#791)
* 🐛 Fixed typos and grammatical errors

* 🐛 Made changes based on Tanay's feedback
2020-07-24 12:56:41 +02:00

47 lines
793 B
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const singletonOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'singleton',
],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get a singleton',
},
],
default: 'get',
description: 'The operation to perform.',
}
] as INodeProperties[];
export const singletonFields = [
{
displayName: 'Singleton',
name: 'singleton',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getSingletons',
},
displayOptions: {
show: {
resource: [
'singleton',
],
},
},
required: true,
description: 'Name of the singleton to operate on.'
},
] as INodeProperties[];