[系统设置]增加界面设置,可以定制系统名称等

This commit is contained in:
GoEdgeLab
2020-11-22 15:34:13 +08:00
parent 683d536d82
commit 37313cfe68
24 changed files with 367 additions and 91 deletions

View File

@@ -1,4 +1,4 @@
package ui
package server
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/settingutils"
@@ -12,9 +12,7 @@ func init() {
Helper(helpers.NewUserMustAuth()).
Helper(settingutils.NewHelper("ui")).
Prefix("/settings/ui").
Get("", new(IndexAction)).
GetPost("/updateHTTPPopup", new(UpdateHTTPPopupAction)).
GetPost("/updateHTTPSPopup", new(UpdateHTTPSPopupAction)).
GetPost("", new(IndexAction)).
EndAll()
})
}