Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Cockpit/FormDescription.ts
Krzysztof Janda 52cbd323f2 Add Cockpit node
2020-04-04 16:04:25 +02:00

49 lines
786 B
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const formOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'forms',
],
},
},
options: [
{
name: 'Submit a form',
value: 'submit',
description: 'Store submission of a form',
},
],
default: 'submit',
description: 'The operation to perform.',
}
] as INodeProperties[];
export const formFields = [
// Forms:submit
{
displayName: 'Form data',
name: 'form',
type: 'json',
required: true,
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: {
show: {
resource: [
'forms',
],
},
},
description: 'The data to save.',
},
] as INodeProperties[];