feat: 证书列表增加设置自动续签功能 (#337)

This commit is contained in:
zhengkunwang223
2023-03-21 14:42:50 +08:00
committed by GitHub
parent f516333682
commit 72237596f3
11 changed files with 683 additions and 470 deletions

View File

@@ -139,6 +139,10 @@ export const RenewSSL = (req: Website.SSLRenew) => {
return http.post<any>(`/websites/ssl/renew`, req);
};
export const UpdateSSL = (req: Website.SSLUpdate) => {
return http.post<any>(`/websites/ssl/update`, req);
};
export const GetDnsResolve = (req: Website.DNSResolveReq) => {
return http.post<Website.DNSResolve[]>(`/websites/ssl/resolve`, req);
};