소스 검색

Allow admins to delete attachments.

Justin Nuß 10 년 전
부모
커밋
ef1cbcd761
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      routers/repo/issue.go

+ 1 - 1
routers/repo/issue.go

@@ -1158,7 +1158,7 @@ func IssueDeleteAttachment(ctx *middleware.Context, params martini.Params) {
 		return
 	}
 
-	if comment.PosterId != ctx.User.Id {
+	if comment.PosterId != ctx.User.Id && !ctx.User.IsAdmin {
 		ctx.JSON(400, map[string]interface{}{
 			"ok":    false,
 			"error": "no permissions",