From 15614412f86a20072dab7cb9f1302dcf694d803b Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 15 Jun 2024 09:40:26 +0200 Subject: [PATCH] Clean up --- apps/api/src/app/benchmark/benchmark.controller.ts | 2 -- apps/api/src/app/benchmark/benchmark.module.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/apps/api/src/app/benchmark/benchmark.controller.ts b/apps/api/src/app/benchmark/benchmark.controller.ts index b842ad8e5..9c6331498 100644 --- a/apps/api/src/app/benchmark/benchmark.controller.ts +++ b/apps/api/src/app/benchmark/benchmark.controller.ts @@ -1,11 +1,9 @@ -import { AdminService } from '@ghostfolio/api/app/admin/admin.service'; import { HasPermission } from '@ghostfolio/api/decorators/has-permission.decorator'; import { HasPermissionGuard } from '@ghostfolio/api/guards/has-permission.guard'; import { getInterval } from '@ghostfolio/api/helper/portfolio.helper'; import { TransformDataSourceInRequestInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.interceptor'; import { TransformDataSourceInResponseInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.interceptor'; import type { - AdminMarketDataDetails, BenchmarkMarketDataDetails, BenchmarkResponse, UniqueAsset diff --git a/apps/api/src/app/benchmark/benchmark.module.ts b/apps/api/src/app/benchmark/benchmark.module.ts index d81754e4e..e7d1e9435 100644 --- a/apps/api/src/app/benchmark/benchmark.module.ts +++ b/apps/api/src/app/benchmark/benchmark.module.ts @@ -1,5 +1,4 @@ import { RedisCacheModule } from '@ghostfolio/api/app/redis-cache/redis-cache.module'; -import { SubscriptionModule } from '@ghostfolio/api/app/subscription/subscription.module'; import { SymbolModule } from '@ghostfolio/api/app/symbol/symbol.module'; import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module'; import { TransformDataSourceInResponseModule } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.module'; @@ -25,7 +24,6 @@ import { BenchmarkService } from './benchmark.service'; PrismaModule, PropertyModule, RedisCacheModule, - SubscriptionModule, SymbolModule, SymbolProfileModule, TransformDataSourceInRequestModule,