Browse Source

Merge branch 'feature/exam' into dev
合并冲突

guqiang 1 ngày trước cách đây
mục cha
commit
c62bd75241
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      src/Hotline.Api/Controllers/Exam/ExamManageController.cs

+ 2 - 0
src/Hotline.Api/Controllers/Exam/ExamManageController.cs

@@ -59,6 +59,8 @@ namespace Hotline.Api.Controllers.Exam
         [HttpPost(ExamManageApiRoute.GetPagedList)]
         public async Task<ExamManagePageViewResponse> GetPagedList([FromBody] ExamManagePagedRequest questionPagedRequest)
         {
+            await _examManageService.UpdateExamStatus(new EntityQueryRequest(), HttpContext.RequestAborted);
+
             var questionPageViewResponse = await _examManageService.GetPagedListAsync(questionPagedRequest);
 
             return questionPageViewResponse as ExamManagePageViewResponse;