增加一部分操作日志

This commit is contained in:
GoEdgeLab
2020-11-10 21:37:48 +08:00
parent d088e88e58
commit 35f728515e
61 changed files with 273 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ package components
import (
"encoding/json"
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
@@ -45,6 +46,9 @@ func (this *IndexAction) RunPost(params struct {
GlobalConfigJSON []byte
Must *actions.Must
}) {
// 创建日志
this.CreateLog(oplogs.LevelInfo, "保存代理服务全局配置")
if len(params.GlobalConfigJSON) == 0 {
this.Fail("错误的配置信息,请刷新当前页面后重试")
}