mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-29 02:06:34 +08:00 
			
		
		
		
	fix: 解决容器编排路径为空时无法删除的问题 (#6862)
This commit is contained in:
		
							parent
							
								
									bb6d4635a1
								
							
						
					
					
						commit
						31576138bf
					
				
					 2 changed files with 5 additions and 1 deletions
				
			
		|  | @ -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"` | ||||
| } | ||||
|  |  | |||
|  | @ -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…
	
	Add table
		
		Reference in a new issue