Ensure cron reminders deliver to explicit targets

This commit is contained in:
野生派Coder~
2026-03-03 00:10:20 +08:00
parent d1c277d3c0
commit 8b97064255
5 changed files with 151 additions and 41 deletions

View File

@@ -6,6 +6,13 @@ export type CronJob = {
name: string;
enabled: boolean;
expr?: string;
schedule?: {
kind?: string;
atMs?: number;
everyMs?: number;
expr?: string;
tz?: string;
};
message?: string;
deliver?: boolean;
channel?: string;