From bfe5b86004791823b198be76084aa128d262b290 Mon Sep 17 00:00:00 2001 From: Justin Nuß Date: Thu, 24 Jul 2014 15:19:59 +0200 Subject: Add file upload for attachments --- models/issue.go | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'models/issue.go') diff --git a/models/issue.go b/models/issue.go index f16c384b..9422a738 100644 --- a/models/issue.go +++ b/models/issue.go @@ -1085,21 +1085,3 @@ func DeleteAttachmentsByComment(commentId int64, remove bool) (int, error) { return DeleteAttachments(attachments, remove) } - -// AssignAttachment assigns the given attachment to the specified comment -func AssignAttachment(issueId, commentId, attachmentId int64) error { - a, err := GetAttachmentById(attachmentId) - - if err != nil { - return err - } - - if a.IssueId != issueId { - return ErrAttachmentNotLinked - } - - a.CommentId = commentId - - _, err = x.Id(a.Id).Update(a) - return err -} -- cgit v1.2.3