- Removed UTC conversion for start and end dates to maintain local date context. - Enhanced console logging to reflect local date values for better debugging.
12 lines
380 B
TypeScript
12 lines
380 B
TypeScript
import {startDailyDigestJob} from "./daily-digest-job";
|
|
import {startNotificationsJob} from "./notifications-job";
|
|
import {startProjectDigestJob} from "./project-digest-job";
|
|
import {startRecurringTasksJob} from "./recurring-tasks";
|
|
|
|
export function startCronJobs() {
|
|
startNotificationsJob();
|
|
startDailyDigestJob();
|
|
startProjectDigestJob();
|
|
// startRecurringTasksJob();
|
|
}
|