GetCommentsByRepoIDSince returns a list of comments for all issues in a repo since a given time point.
(repoID, since int64)
| 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) { |
| 475 | return getCommentsByRepoIDSince(x, repoID, since) |
| 476 | } |
| 477 | |
| 478 | // UpdateComment updates information of comment. |
| 479 | func UpdateComment(doer *User, c *Comment, oldContent string) (err error) { |
no test coverage detected