From f78fe6606d885113f246501139a5163cab9eda0e Mon Sep 17 00:00:00 2001 From: Reto Kaul Date: Thu, 28 Dec 2023 14:58:17 +0100 Subject: [PATCH] Convert benchmark performance to base currency --- apps/api/src/app/benchmark/benchmark.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/app/benchmark/benchmark.controller.ts b/apps/api/src/app/benchmark/benchmark.controller.ts index ebee6ab8e..407bf533a 100644 --- a/apps/api/src/app/benchmark/benchmark.controller.ts +++ b/apps/api/src/app/benchmark/benchmark.controller.ts @@ -27,6 +27,8 @@ import { DataSource } from '@prisma/client'; import { StatusCodes, getReasonPhrase } from 'http-status-codes'; import { BenchmarkService } from './benchmark.service'; +import { REQUEST } from '@nestjs/core'; +import { RequestWithUser } from '@ghostfolio/common/types'; @Controller('benchmark') export class BenchmarkController {