增加DNS域名管理

This commit is contained in:
GoEdgeLab
2020-11-12 14:41:34 +08:00
parent bba0b3c316
commit 78560620e8
16 changed files with 350 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
package domains
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type UpdatePopupAction struct {
actionutils.ParentAction
}
func (this *UpdatePopupAction) Init() {
this.Nav("", "", "")
}
func (this *UpdatePopupAction) RunGet(params struct{}) {
this.Show()
}