(e Engine, issueID int64)
| 457 | } |
| 458 | |
| 459 | func getCommentsByIssueID(e Engine, issueID int64) ([]*Comment, error) { |
| 460 | return getCommentsByIssueIDSince(e, issueID, -1) |
| 461 | } |
| 462 | |
| 463 | // GetCommentsByIssueID returns all comments of an issue. |
| 464 | func GetCommentsByIssueID(issueID int64) ([]*Comment, error) { |
no test coverage detected