实现特殊页面配置

This commit is contained in:
刘祥超
2020-09-20 08:58:48 +08:00
parent 00084a8f66
commit 9537fd499c
13 changed files with 400 additions and 3 deletions

View File

@@ -12,7 +12,9 @@ func init() {
Helper(helpers.NewUserMustAuth()).
Helper(serverutils.NewServerHelper()).
Prefix("/servers/server/settings/pages").
Get("", new(IndexAction)).
GetPost("", new(IndexAction)).
GetPost("/createPopup", new(CreatePopupAction)).
GetPost("/updatePopup", new(UpdatePopupAction)).
EndAll()
})
}