mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	#3548 disable issue cannot edit label and milestonefor pull requests
This commit is contained in:
		@@ -478,7 +478,7 @@ func runWeb(ctx *cli.Context) error {
 | 
			
		||||
			m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
 | 
			
		||||
			m.Post("/delete", repo.DeleteLabel)
 | 
			
		||||
			m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
 | 
			
		||||
		}, repo.MustEnableIssues, reqRepoWriter, context.RepoRef())
 | 
			
		||||
		}, reqRepoWriter, context.RepoRef())
 | 
			
		||||
		m.Group("/milestones", func() {
 | 
			
		||||
			m.Combo("/new").Get(repo.NewMilestone).
 | 
			
		||||
				Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
 | 
			
		||||
@@ -486,7 +486,7 @@ func runWeb(ctx *cli.Context) error {
 | 
			
		||||
			m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
 | 
			
		||||
			m.Get("/:id/:action", repo.ChangeMilestonStatus)
 | 
			
		||||
			m.Post("/delete", repo.DeleteMilestone)
 | 
			
		||||
		}, repo.MustEnableIssues, reqRepoWriter, context.RepoRef())
 | 
			
		||||
		}, reqRepoWriter, context.RepoRef())
 | 
			
		||||
 | 
			
		||||
		m.Group("/releases", func() {
 | 
			
		||||
			m.Get("/new", repo.NewRelease)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user