Remove candle from getBacktestsForUser

This commit is contained in:
2025-07-09 16:55:47 +07:00
parent b2ccd63201
commit 387948a107
7 changed files with 9 additions and 38 deletions

View File

@@ -63,7 +63,7 @@ public class BacktestController : BaseController
public async Task<ActionResult<IEnumerable<Backtest>>> Backtests()
{
var user = await GetUser();
return Ok(await _backtester.GetBacktestsByUser(user));
return Ok(_backtester.GetBacktestsByUser(user));
}
/// <summary>