Browse Source

fix: 解决容器编排路径为空时无法删除的问题 (#6862)

pull/6893/head
ssongliu 4 weeks ago committed by GitHub
parent
commit
126aea931c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      backend/app/dto/container.go
  2. 4
      backend/app/service/container_compose.go

2
backend/app/dto/container.go

@ -218,7 +218,7 @@ type ComposeCreate struct {
}
type ComposeOperation struct {
Name string `json:"name" validate:"required"`
Path string `json:"path" validate:"required"`
Path string `json:"path"`
Operation string `json:"operation" validate:"required,oneof=up start stop down delete"`
WithFile bool `json:"withFile"`
}

4
backend/app/service/container_compose.go

@ -252,6 +252,10 @@ func (u *ContainerService) CreateCompose(req dto.ComposeCreate) (string, error)
}
func (u *ContainerService) ComposeOperation(req dto.ComposeOperation) error {
if len(req.Path) == 0 && req.Operation == "delete" {
_ = composeRepo.DeleteRecord(commonRepo.WithByName(req.Name))
return nil
}
if cmd.CheckIllegal(req.Path, req.Operation) {
return buserr.New(constant.ErrCmdIllegal)
}

Loading…
Cancel
Save