|
...
|
...
|
@@ -196,13 +196,9 @@ class DomainInfoController extends BaseController |
|
|
|
$this->request->validate([
|
|
|
|
'id'=>'required',
|
|
|
|
'type' => 'required',
|
|
|
|
'other_domain'=>'required',
|
|
|
|
'extend_config'=>'required'
|
|
|
|
],[
|
|
|
|
'id.required' => 'id不能为空',
|
|
|
|
'type.required' => '类型不能为空',
|
|
|
|
'other_domain.required' => '其他域名不能为空',
|
|
|
|
'extend_config.required' => '301配置不能为空',
|
|
|
|
]);
|
|
|
|
$domainInfoLogic->sslSave();
|
|
|
|
$this->response('success');
|
...
|
...
|
|