n8n/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts
Iván Ovejero 4cf8055224
Add Kitemaker node (#1676)
*  Add Kitemaker node

*  Require status ID for workItem:create

* ✏️ Reword button text

*  Add credentials file

*  Implement pagination

*  Improvements

*  Remove not needed parameter

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-04-30 16:00:28 -05:00

28 lines
471 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const organizationOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
default: 'get',
description: 'Operation to perform.',
options: [
{
name: 'Get',
value: 'get',
description: 'Retrieve data on the logged-in user\'s organization.',
},
],
displayOptions: {
show: {
resource: [
'organization',
],
},
},
},
] as INodeProperties[];