节点中实现重写规则

This commit is contained in:
GoEdgeLab
2020-09-28 18:22:29 +08:00
parent f459632dd6
commit 43de7e4678
4 changed files with 25 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ func (this *CreatePopupAction) RunPost(params struct {
Mode string
RedirectStatus int
ProxyHost string
WithQuery bool
IsBreak bool
IsOn bool
@@ -67,6 +68,7 @@ func (this *CreatePopupAction) RunPost(params struct {
Mode: params.Mode,
RedirectStatus: types.Int32(params.RedirectStatus),
ProxyHost: params.ProxyHost,
WithQuery: params.WithQuery,
IsBreak: params.IsBreak,
IsOn: params.IsOn,
})

View File

@@ -53,6 +53,7 @@ func (this *UpdatePopupAction) RunPost(params struct {
Mode string
RedirectStatus int
ProxyHost string
WithQuery bool
IsBreak bool
IsOn bool
@@ -81,6 +82,7 @@ func (this *UpdatePopupAction) RunPost(params struct {
Mode: params.Mode,
RedirectStatus: types.Int32(params.RedirectStatus),
ProxyHost: params.ProxyHost,
WithQuery: params.WithQuery,
IsBreak: params.IsBreak,
IsOn: params.IsOn,
})