mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
add schedule group
This commit is contained in:
parent
0565ea7ac1
commit
8cb61bade5
|
@ -22,7 +22,7 @@ export class Cron implements INodeType {
|
||||||
displayName: 'Cron',
|
displayName: 'Cron',
|
||||||
name: 'cron',
|
name: 'cron',
|
||||||
icon: 'fa:calendar',
|
icon: 'fa:calendar',
|
||||||
group: ['trigger'],
|
group: ['trigger', 'schedule'],
|
||||||
version: 1,
|
version: 1,
|
||||||
description: 'Triggers the workflow at a specific time',
|
description: 'Triggers the workflow at a specific time',
|
||||||
eventTriggerDescription: '',
|
eventTriggerDescription: '',
|
||||||
|
|
|
@ -12,7 +12,7 @@ export class Interval implements INodeType {
|
||||||
displayName: 'Interval',
|
displayName: 'Interval',
|
||||||
name: 'interval',
|
name: 'interval',
|
||||||
icon: 'fa:hourglass',
|
icon: 'fa:hourglass',
|
||||||
group: ['trigger'],
|
group: ['trigger', 'schedule'],
|
||||||
version: 1,
|
version: 1,
|
||||||
description: 'Triggers the workflow in a given interval',
|
description: 'Triggers the workflow in a given interval',
|
||||||
eventTriggerDescription: '',
|
eventTriggerDescription: '',
|
||||||
|
|
Loading…
Reference in a new issue