From 7be5a507c9903d20046336c421c038926a534cc0 Mon Sep 17 00:00:00 2001 From: tanbirali Date: Mon, 20 Oct 2025 14:49:24 +0530 Subject: [PATCH] feat: registered bull-board for data-gathering.module --- .../services/queues/data-gathering/data-gathering.module.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/api/src/services/queues/data-gathering/data-gathering.module.ts b/apps/api/src/services/queues/data-gathering/data-gathering.module.ts index b51823476..3e671e430 100644 --- a/apps/api/src/services/queues/data-gathering/data-gathering.module.ts +++ b/apps/api/src/services/queues/data-gathering/data-gathering.module.ts @@ -9,6 +9,8 @@ import { DataGatheringService } from '@ghostfolio/api/services/queues/data-gathe import { SymbolProfileModule } from '@ghostfolio/api/services/symbol-profile/symbol-profile.module'; import { DATA_GATHERING_QUEUE } from '@ghostfolio/common/config'; +import { BullAdapter } from '@bull-board/api/bullAdapter'; +import { BullBoardModule } from '@bull-board/nestjs'; import { BullModule } from '@nestjs/bull'; import { Module } from '@nestjs/common'; import ms from 'ms'; @@ -24,6 +26,10 @@ import { DataGatheringProcessor } from './data-gathering.processor'; }, name: DATA_GATHERING_QUEUE }), + BullBoardModule.forFeature({ + name: DATA_GATHERING_QUEUE, + adapter: BullAdapter + }), ConfigurationModule, DataEnhancerModule, DataProviderModule,