Browse Source

getStaffSessionList bugfix

luojunhui 1 month ago
parent
commit
579f99346a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      pqai_agent_server/api_server.py

+ 2 - 0
pqai_agent_server/api_server.py

@@ -269,6 +269,8 @@ def quit_human_interventions_status():
     user_id = req_data["user_id"]
     if not user_id or not staff_id:
         return wrap_response(404, msg="user_id and staff_id are required")
+    # dev
+    staff_id = 1688854492669990
     response = quit_human_intervention_status(user_id, staff_id)
 
     return wrap_response(200, data=response)