|
@@ -189,6 +189,7 @@ class WelcomeController extends BaseController
|
|
|
$adPositions = AdPositionService::getInstance()->getAdPositions($this->uid, getProp($channelAccount, 'id'));
|
|
|
}
|
|
|
|
|
|
+ $is_audit = Utils::checkIsAudit($package, $brand, $codeVersion) ? 1: 0;
|
|
|
// 配置
|
|
|
$data = [
|
|
|
'support' => $support,
|
|
@@ -205,7 +206,7 @@ class WelcomeController extends BaseController
|
|
|
'reader_banner' => getProp($adPositions, 'reader_banner', []),
|
|
|
'open_alert' => getProp($adPositions, 'open_alert', []),
|
|
|
],
|
|
|
- 'is_audit' => Utils::checkIsAudit($package, $brand, $codeVersion) ? 1: 0,
|
|
|
+ 'is_audit' => $is_audit,
|
|
|
];
|
|
|
return response()->success($data);
|
|
|
}
|