GetAttachmentsByIssueID returns all attachments of an issue.
(issueID int64)
| 133 | |
| 134 | // GetAttachmentsByIssueID returns all attachments of an issue. |
| 135 | func GetAttachmentsByIssueID(issueID int64) ([]*Attachment, error) { |
| 136 | return getAttachmentsByIssueID(x, issueID) |
| 137 | } |
| 138 | |
| 139 | func getAttachmentsByCommentID(e Engine, commentID int64) ([]*Attachment, error) { |
| 140 | attachments := make([]*Attachment, 0, 5) |
no test coverage detected