io-actions/app/blocks/triggers/schedule/month/month_settings.js
2025-08-01 16:13:40 -04:00

22 lines
415 B
JavaScript

/** @type {import('#types').BlockDefinitionRaw} */
export default {
type: "month_settings",
name: "Month Settings",
colour: 30,
description: "How would you like to specify the months portion of your schedule?",
connections: {},
template: "Month: %MONTH_BLOCK",
inputs: {
MONTH_BLOCK: {
check: 'cron_month',
shadow: 'all_months'
}
},
generators: {
json: () => { }
}
}