rename functions

This commit is contained in:
Unknwon 2015-08-10 22:45:49 +08:00
parent 75aff60c90
commit 884bc4ffd8
2 changed files with 6 additions and 6 deletions

View file

@ -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