GetCommentsByIssueIDSince returns a list of comments of an issue since a given time point.
(issueID, since int64)
| 467 | |
| 468 | // GetCommentsByIssueIDSince returns a list of comments of an issue since a given time point. |
| 469 | func GetCommentsByIssueIDSince(issueID, since int64) ([]*Comment, error) { |
| 470 | return getCommentsByIssueIDSince(x, issueID, since) |
| 471 | } |
| 472 | |
| 473 | // GetCommentsByRepoIDSince returns a list of comments for all issues in a repo since a given time point. |
| 474 | func GetCommentsByRepoIDSince(repoID, since int64) ([]*Comment, error) { |
no test coverage detected