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

Function GetCommentsByIssueIDSince

internal/database/comment.go:469–471  ·  view source on GitHub ↗

GetCommentsByIssueIDSince returns a list of comments of an issue since a given time point.

(issueID, since int64)

Source from the content-addressed store, hash-verified

467
468// GetCommentsByIssueIDSince returns a list of comments of an issue since a given time point.
469func 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.
474func GetCommentsByRepoIDSince(repoID, since int64) ([]*Comment, error) {

Callers 1

ListIssueCommentsFunction · 0.92

Calls 1

Tested by

no test coverage detected