summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue/processors/system/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/queue/processors/system/index.ts')
-rw-r--r--packages/backend/src/queue/processors/system/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/queue/processors/system/index.ts b/packages/backend/src/queue/processors/system/index.ts
index 8460ea0a9b..636fefc402 100644
--- a/packages/backend/src/queue/processors/system/index.ts
+++ b/packages/backend/src/queue/processors/system/index.ts
@@ -1,8 +1,10 @@
import * as Bull from 'bull';
import { resyncCharts } from './resync-charts';
+import { cleanCharts } from './clean-charts';
const jobs = {
resyncCharts,
+ cleanCharts,
} as Record<string, Bull.ProcessCallbackFunction<Record<string, unknown>> | Bull.ProcessPromiseFunction<Record<string, unknown>>>;
export default function(dbQueue: Bull.Queue<Record<string, unknown>>) {