Files
n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/rmm/mute/description.ts
T
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

63 lines
1.0 KiB
TypeScript

import type { RmmProperties } from '../../Interfaces';
export const rmmMuteDescription: RmmProperties = [
{
displayName: 'RMM Alert ID',
name: 'alertId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['rmm'],
operation: ['mute'],
},
},
default: '',
description: 'Mute the RMM alert by ID',
},
{
displayName: 'Mute Period',
name: 'muteFor',
type: 'options',
displayOptions: {
show: {
resource: ['rmm'],
operation: ['mute'],
},
},
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
options: [
{
name: '1 Hour',
value: '1-hour',
},
{
name: '1 Day',
value: '1-day',
},
{
name: '2 Days',
value: '2-days',
},
{
name: '1 Week',
value: '1-week',
},
{
name: '2 Weeks',
value: '2-weeks',
},
{
name: '1 Month',
value: '1-month',
},
{
name: 'Forever',
value: 'forever',
},
],
default: '',
description: 'Length of time to mute alert for',
},
];