feat(dm): migrated all the dm topics
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 4m26s

This commit is contained in:
2026-06-26 11:05:17 -05:00
parent 012a7e83b2
commit 47b149d1ea
48 changed files with 14156 additions and 44 deletions

View File

@@ -21,6 +21,7 @@ import { monitorAlplaPurchase } from "./purchase/purchase.controller.js";
import { setupSocketIORoutes } from "./socket.io/serverSetup.js";
import { serversChecks } from "./system/serverData.controller.js";
import { baseSettingValidationCheck } from "./system/settingsBase.controller.js";
import { monitorProdAuditLog } from "./system/system.prodAuditLog.utils.js";
import { startTCPServer } from "./tcpServer/tcp.server.js";
import {
aggregateRouteHitsForBusinessDay,
@@ -89,6 +90,9 @@ const start = async () => {
);
createCronJob("cleanHitsUp", "0 0 7 * * *", () => cleanupOldRouteHits());
createCronJob("ProdAuditLogMonitor", "*/30 * * * * *", () =>
monitorProdAuditLog(),
);
// one shots only needed to run on server startups
createNotifications();
startNotifications();