Browse Source

修改审核记录查询

TANG JIANG 2 years ago
parent
commit
5dcdb0d78e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Hotline.Api/Controllers/KnowledgeController.cs

+ 1 - 1
src/Hotline.Api/Controllers/KnowledgeController.cs

@@ -324,7 +324,7 @@ namespace Hotline.Api.Controllers
         [HttpGet("getworkflow")]
         public async Task<Workflow> GetWorkflow(string workFlowId)
         {
-            return await _workflowDomainService.GetWorkflowAsync(workFlowId, withSupplements: true, cancellationToken: HttpContext.RequestAborted);
+            return await _workflowDomainService.GetWorkflowAsync(workFlowId, withSteps: true, withSupplements: true, withAssigns: true, cancellationToken: HttpContext.RequestAborted);
         }
 
         /// <summary>