MCPcopy Create free account
hub / github.com/gogs/gogs / GetCommentsByRepoIDSince

Function GetCommentsByRepoIDSince

internal/database/comment.go:474–476  ·  view source on GitHub ↗

GetCommentsByRepoIDSince returns a list of comments for all issues in a repo since a given time point.

(repoID, since int64)

Source from the content-addressed store, hash-verified

472
473// GetCommentsByRepoIDSince returns a list of comments for all issues in a repo since a given time point.
474func GetCommentsByRepoIDSince(repoID, since int64) ([]*Comment, error) {
475 return getCommentsByRepoIDSince(x, repoID, since)
476}
477
478// UpdateComment updates information of comment.
479func UpdateComment(doer *User, c *Comment, oldContent string) (err error) {

Callers 1

ListRepoIssueCommentsFunction · 0.92

Calls 1

getCommentsByRepoIDSinceFunction · 0.85

Tested by

no test coverage detected