2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-07 09:27:15 +08:00

fix: optimize cert controller

This commit is contained in:
耗子
2023-11-05 12:24:28 +08:00
parent 3d43a2a08f
commit f6f47785ed
4 changed files with 21 additions and 23 deletions

View File

@@ -37,23 +37,23 @@ func (r *CertController) CAProviders(ctx http.Context) http.Response {
return Success(ctx, []map[string]string{
{
"name": "Let's Encrypt",
"ca": acme.CALetEncrypt,
"ca": "letsencrypt",
},
{
"name": "ZeroSSL",
"ca": acme.CAZeroSSL,
"ca": "zerossl",
},
{
"name": "SSL.com",
"ca": acme.CASSLcom,
"ca": "sslcom",
},
{
"name": "Google",
"ca": acme.CAGoogle,
"ca": "google",
},
{
"name": "Buypass",
"ca": acme.CABuypass,
"ca": "buypass",
},
})
}