|
...
|
...
|
@@ -6,6 +6,7 @@ use App\Enums\Common\Code; |
|
|
|
use App\Http\Controllers\Aside\BaseController;
|
|
|
|
use App\Http\Logic\Aside\Domain\DomainInfoLogic;
|
|
|
|
use App\Http\Requests\Aside\Domain\DomainInfoRequest;
|
|
|
|
use App\Models\Domain\CountryCode;
|
|
|
|
use App\Models\Domain\DomainInfo;
|
|
|
|
use App\Models\Project\Project;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
...
|
...
|
@@ -203,4 +204,17 @@ class DomainInfoController extends BaseController |
|
|
|
$domainInfoLogic->sslSave();
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取可屏蔽国家列表
|
|
|
|
* @author Akun
|
|
|
|
* @date 2024/07/01 16:41
|
|
|
|
*/
|
|
|
|
public function getCountryCode()
|
|
|
|
{
|
|
|
|
$countryModel = new CountryCode();
|
|
|
|
$list = $countryModel->list([],'id',['id','c_name'],'asc');
|
|
|
|
|
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|