// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn . package tasks import ( "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" "github.com/TeaOSLab/EdgeCommon/pkg/langs/codes" "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb" ) type DeleteAllAction struct { actionutils.ParentAction } func (this *DeleteAllAction) RunPost(params struct{}) { defer this.CreateLogInfo(codes.NodeTask_LogDeleteAllNodeTasks) _, err := this.RPC().NodeTaskRPC().DeleteAllNodeTasks(this.AdminContext(), &pb.DeleteAllNodeTasksRequest{}) if err != nil { this.ErrorPage(err) return } this.Success() }