1
0
mirror of https://github.com/newnius/YAO-portal.git synced 2025-12-13 09:06:43 +00:00
This commit is contained in:
2020-06-21 13:05:22 +08:00
parent 5627406e82
commit bb54f71a61
3 changed files with 35 additions and 0 deletions

View File

@@ -99,6 +99,13 @@ switch ($action) {
$res = job_status($job);
break;
case 'job_predict_req':
$job = new CRObject();
$job->set('name', cr_get_POST('name'));
$job->set('cmd', cr_get_POST('cmd'));
$res = job_predict_req($job);
break;
case 'summary_get':
$res = summary_get();
break;