rename functions

release/v0.9
Unknwon 9 years ago
parent 75aff60c90
commit 884bc4ffd8

@ -400,8 +400,8 @@ func PairsContains(ius []*IssueUser, issueId, uid int64) int {
return -1
}
// GetIssueUserPairs returns issue-user pairs by given repository and user.
func GetIssueUserPairs(rid, uid int64, isClosed bool) ([]*IssueUser, error) {
// GetIssueUsers returns issue-user pairs by given repository and user.
func GetIssueUsers(rid, uid int64, isClosed bool) ([]*IssueUser, error) {
ius := make([]*IssueUser, 0, 10)
err := x.Where("is_closed=?", isClosed).Find(&ius, &IssueUser{RepoID: rid, UID: uid})
return ius, err

@ -114,14 +114,14 @@ func Issues(ctx *middleware.Context) {
issues, err := models.Issues(uid, assigneeID, repo.ID, posterID, milestoneID,
page, isShowClosed, filterMode == models.FM_MENTION, selectLabels, ctx.Query("sortType"))
if err != nil {
ctx.Handle(500, "GetIssues: %v", err)
ctx.Handle(500, "Issues: %v", err)
return
}
// Get issue-user pairs.
pairs, err := models.GetIssueUserPairs(repo.ID, posterID, isShowClosed)
// Get issue-user relations.
pairs, err := models.GetIssueUsers(repo.ID, posterID, isShowClosed)
if err != nil {
ctx.Handle(500, "GetIssueUserPairs: %v", err)
ctx.Handle(500, "GetIssueUsers: %v", err)
return
}

Loading…
Cancel
Save