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