mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const firedAlertOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['firedAlert'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get Report',
|
|
value: 'getReport',
|
|
description: 'Retrieve a fired alerts report',
|
|
action: 'Get a fired alerts report',
|
|
},
|
|
],
|
|
default: 'getReport',
|
|
},
|
|
];
|