Fix jwt token

This commit is contained in:
2025-08-05 04:51:24 +07:00
parent 2f1abb3f05
commit 4d63b9e970
3 changed files with 66 additions and 60 deletions

View File

@@ -554,7 +554,6 @@ public class DataController : ControllerBase
}
/// <summary>
/// Retrieves a paginated list of agent summaries for the agent index page
/// </summary>
@@ -564,6 +563,7 @@ public class DataController : ControllerBase
/// <param name="sortOrder">Sort order - "asc" or "desc" (defaults to "desc")</param>
/// <param name="agentNames">Optional comma-separated list of agent names to filter by</param>
/// <returns>A paginated list of agent summaries sorted by the specified field</returns>
[AllowAnonymous]
[HttpGet("GetAgentIndexPaginated")]
public async Task<ActionResult<PaginatedAgentIndexResponse>> GetAgentIndexPaginated(
int page = 1,