+ Add user and bug api.

This commit is contained in:
zhujinyong
2021-07-19 11:58:25 +08:00
parent 7bb10b58db
commit 37f44fbbca
19 changed files with 390 additions and 22 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class taskAssignToEntry extends Entry
$data = $this->getData();
if($data->result == 'fail') return $this->sendError(400, $data->message);
$task = $this->loadModel('task')->getByID($dataID);
$task = $this->loadModel('task')->getByID($taskID);
$this->send(200, $task);
}