diff --git a/src/server/Elsa.Server.Api/Endpoints/WorkflowRegistry/ListAll.cs b/src/server/Elsa.Server.Api/Endpoints/WorkflowRegistry/ListAll.cs index fd3e040214..f7324d4799 100644 --- a/src/server/Elsa.Server.Api/Endpoints/WorkflowRegistry/ListAll.cs +++ b/src/server/Elsa.Server.Api/Endpoints/WorkflowRegistry/ListAll.cs @@ -34,10 +34,10 @@ public ListAll(IEnumerable workflowProviders, ITenantAccessor } [HttpGet] - [ProducesResponseType(StatusCodes.Status200OK, Type = typeof(PagedList))] + [ProducesResponseType(StatusCodes.Status200OK, Type = typeof(List))] [SwaggerOperation( Summary = "Returns a list of workflow blueprints.", - Description = "Returns paginated a list of workflow blueprints. When no version options are specified, the latest version is returned.", + Description = "Returns a list of workflow blueprints. When no version options are specified, the latest version is returned.", OperationId = "WorkflowBlueprints.List", Tags = new[] { "WorkflowBlueprints" }) ] @@ -61,4 +61,4 @@ private async IAsyncEnumerable ListAllAsync(string? tenantId yield return workflowBlueprint; } } -} \ No newline at end of file +}