feat(TheHive Node): Overhaul (#6457)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
import * as executeQuery from './executeQuery.operation';
|
||||
|
||||
export { executeQuery };
|
||||
|
||||
export const description: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
noDataExpression: true,
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: 'executeQuery',
|
||||
options: [
|
||||
{
|
||||
name: 'Execute Query',
|
||||
value: 'executeQuery',
|
||||
action: 'Execute a query',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['query'],
|
||||
},
|
||||
},
|
||||
},
|
||||
...executeQuery.description,
|
||||
];
|
||||
Reference in New Issue
Block a user