diff options
Diffstat (limited to 'models/issue.go')
-rw-r--r-- | models/issue.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/models/issue.go b/models/issue.go index 32e6a5b66b..8723dda913 100644 --- a/models/issue.go +++ b/models/issue.go @@ -1206,8 +1206,12 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) { // GetParticipantsByIssueID returns all users who are participated in comments of an issue. func GetParticipantsByIssueID(issueID int64) ([]*User, error) { + return getParticipantsByIssueID(x, issueID) +} + +func getParticipantsByIssueID(e Engine, issueID int64) ([]*User, error) { userIDs := make([]int64, 0, 5) - if err := x.Table("comment").Cols("poster_id"). + if err := e.Table("comment").Cols("poster_id"). Where("issue_id = ?", issueID). And("type = ?", CommentTypeComment). Distinct("poster_id"). @@ -1219,7 +1223,7 @@ func GetParticipantsByIssueID(issueID int64) ([]*User, error) { } users := make([]*User, 0, len(userIDs)) - return users, x.In("id", userIDs).Find(&users) + return users, e.In("id", userIDs).Find(&users) } // UpdateIssueMentions extracts mentioned people from content and |