Skip to content

Commit

Permalink
debug dashboardpagination.py for hsg queue
Browse files Browse the repository at this point in the history
  • Loading branch information
nkan-aot2 authored Nov 14, 2024
1 parent 2679a08 commit c3e62ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ def get(queuetype = "all"):
elif queuetype is not None and queuetype == "ministry" and AuthHelper.getusertype() == "ministry":
requests = dashboardservice().getministryrequestqueuepagination(AuthHelper.getministrygroups(), _page, _size, _sortingitems, _sortingorders, _filterfields, _keyword, _additionalfilter, _userid)
else:
print("statuscode401")
statuscode = 401

return requests, statuscode
except BusinessException as exception:
return {'status': exception.status_code, 'message':exception.message}, 500
return {'status': exception.status_code, 'message':exception.message}, 500

0 comments on commit c3e62ab

Please sign in to comment.