mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
21 lines
441 B
TypeScript
21 lines
441 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
import { updateDisplayOptions } from 'n8n-workflow';
|
|
|
|
import { groupLocator } from '../common';
|
|
|
|
const properties: INodeProperties[] = [
|
|
{
|
|
...groupLocator,
|
|
description: 'Select the group you want to delete',
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['group'],
|
|
operation: ['delete'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|