17 lines
344 B
Go
17 lines
344 B
Go
package clusters
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type UpgradeRemoteAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *UpgradeRemoteAction) RunGet(params struct {
|
|
NodeId int64
|
|
ClusterId int64
|
|
}) {
|
|
this.Data["nodeId"] = params.NodeId
|
|
this.Data["clusterId"] = params.ClusterId
|
|
this.Show()
|
|
}
|