2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00

feat(证书管理): 输出错误信息

This commit is contained in:
耗子
2023-11-09 01:58:28 +08:00
parent 3f64d81250
commit 876fdc419f

View File

@@ -171,7 +171,7 @@ func (r *CertController) UserStore(ctx http.Context) http.Response {
facades.Log().Request(ctx.Request()).Tags("面板", "证书管理").With(map[string]any{
"error": err.Error(),
}).Error("添加ACME用户失败")
return ErrorSystem(ctx)
return Error(ctx, http.StatusInternalServerError, err.Error())
}
return Success(ctx, nil)
@@ -203,7 +203,7 @@ func (r *CertController) UserUpdate(ctx http.Context) http.Response {
"userID": updateRequest.ID,
"error": err.Error(),
}).Error("更新ACME用户失败")
return ErrorSystem(ctx)
return Error(ctx, http.StatusInternalServerError, err.Error())
}
return Success(ctx, nil)
@@ -264,7 +264,7 @@ func (r *CertController) UserDestroy(ctx http.Context) http.Response {
"userID": showAndDestroyRequest.ID,
"error": err.Error(),
}).Error("删除ACME用户失败")
return ErrorSystem(ctx)
return Error(ctx, http.StatusInternalServerError, err.Error())
}
return Success(ctx, nil)
@@ -420,7 +420,7 @@ func (r *CertController) DNSDestroy(ctx http.Context) http.Response {
"dnsID": showAndDestroyRequest.ID,
"error": err.Error(),
}).Error("删除DNS接口失败")
return ErrorSystem(ctx)
return Error(ctx, http.StatusInternalServerError, err.Error())
}
return Success(ctx, nil)