n8n/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

25 lines
492 B
TypeScript

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