feat: add 'minutely' option to recurrence types in CreateTaskDialog and schedulers

This commit is contained in:
JSC
2025-09-13 23:44:08 +02:00
parent 24cc0cc45f
commit 4fe280cf5c
2 changed files with 4 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ interface CreateTaskDialogProps {
}
const TASK_TYPES: TaskType[] = ['credit_recharge', 'play_sound', 'play_playlist']
const RECURRENCE_TYPES: RecurrenceType[] = ['none', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'cron']
const RECURRENCE_TYPES: RecurrenceType[] = ['none', 'minutely', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'cron']
export function CreateTaskDialog({
open,