GetCommentsByIssueID returns all comments of an issue.
(issueID int64)
| 462 | |
| 463 | // GetCommentsByIssueID returns all comments of an issue. |
| 464 | func GetCommentsByIssueID(issueID int64) ([]*Comment, error) { |
| 465 | return getCommentsByIssueID(x, issueID) |
| 466 | } |
| 467 | |
| 468 | // GetCommentsByIssueIDSince returns a list of comments of an issue since a given time point. |
| 469 | func GetCommentsByIssueIDSince(issueID, since int64) ([]*Comment, error) { |
nothing calls this directly
no test coverage detected