mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Fix close org projects (#24588)
A part of #22865 We can not close org projects now. This PR will fix it.
This commit is contained in:
		@@ -185,19 +185,19 @@ func ChangeProjectStatus(ctx *context.Context) {
 | 
				
			|||||||
	case "close":
 | 
						case "close":
 | 
				
			||||||
		toClose = true
 | 
							toClose = true
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		ctx.Redirect(ctx.Repo.RepoLink + "/projects")
 | 
							ctx.Redirect(ctx.ContextUser.HomeLink() + "/-/projects")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	id := ctx.ParamsInt64(":id")
 | 
						id := ctx.ParamsInt64(":id")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if err := project_model.ChangeProjectStatusByRepoIDAndID(ctx.Repo.Repository.ID, id, toClose); err != nil {
 | 
						if err := project_model.ChangeProjectStatusByRepoIDAndID(0, id, toClose); err != nil {
 | 
				
			||||||
		if project_model.IsErrProjectNotExist(err) {
 | 
							if project_model.IsErrProjectNotExist(err) {
 | 
				
			||||||
			ctx.NotFound("", err)
 | 
								ctx.NotFound("", err)
 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
			ctx.ServerError("ChangeProjectStatusByIDAndRepoID", err)
 | 
								ctx.ServerError("ChangeProjectStatusByRepoIDAndID", err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	ctx.Redirect(ctx.Repo.RepoLink + "/projects?state=" + url.QueryEscape(ctx.Params(":action")))
 | 
						ctx.Redirect(ctx.ContextUser.HomeLink() + "/-/projects?state=" + url.QueryEscape(ctx.Params(":action")))
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// DeleteProject delete a project
 | 
					// DeleteProject delete a project
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user