From eaf18189e4f04cac17a7de2e22c4ee136a05431a Mon Sep 17 00:00:00 2001 From: cryptooda Date: Tue, 5 Aug 2025 05:00:06 +0700 Subject: [PATCH] Allow Anonymous on data controller --- src/Managing.Api/Controllers/DataController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Managing.Api/Controllers/DataController.cs b/src/Managing.Api/Controllers/DataController.cs index 07aa3d3..5e5964b 100644 --- a/src/Managing.Api/Controllers/DataController.cs +++ b/src/Managing.Api/Controllers/DataController.cs @@ -23,6 +23,7 @@ namespace Managing.Api.Controllers; /// Controller for handling data-related operations such as retrieving tickers, spotlight data, and candles. /// Requires authorization for access. /// +[AllowAnonymous] [ApiController] [Route("[controller]")] public class DataController : ControllerBase