mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-03 00:44:35 -04:00
rename functions
This commit is contained in:
parent
75aff60c90
commit
884bc4ffd8
2 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue