mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Revert "fix {DELETE,POST} /repos/{owner}/{repo}/issues/comments/{id}/reactions"
This reverts commit 685ebdba63.
	
	
This commit is contained in:
		
					parent
					
						
							
								d8204f3e8f
							
						
					
				
			
			
				commit
				
					
						ba352ef4b1
					
				
			
		
					 1 changed files with 2 additions and 12 deletions
				
			
		| 
						 | 
					@ -186,19 +186,9 @@ func changeIssueCommentReaction(ctx *context.APIContext, form api.EditReactionOp
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if err = comment.LoadIssue(ctx); err != nil {
 | 
						err = comment.LoadIssue(ctx)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
		ctx.Error(http.StatusInternalServerError, "comment.LoadIssue() failed", err)
 | 
							ctx.Error(http.StatusInternalServerError, "comment.LoadIssue() failed", err)
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if comment.Issue.RepoID != ctx.Repo.Repository.ID {
 | 
					 | 
				
			||||||
		ctx.NotFound()
 | 
					 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if !ctx.Repo.CanReadIssuesOrPulls(comment.Issue.IsPull) {
 | 
					 | 
				
			||||||
		ctx.NotFound()
 | 
					 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if comment.Issue.IsLocked && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull) {
 | 
						if comment.Issue.IsLocked && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue