Commit 27e088d6 authored by shajiaiming's avatar shajiaiming

fix

parent a7f86838
......@@ -48,4 +48,15 @@ class IssueChainController extends BaseController
doEnd :
return ['code' => $code, 'msg' => $msg, 'data' => $data];
}
public function actionManualReviewStatus()
{
$status = 0;
$manual_review = Yii::$app->redis->get('issue_chain_manual_review');
if (false == $manual_review || 'open' == $manual_review) {
$status = 1;
}
return ['code' => 0, 'data' => $status];
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment