working part of #9998 (#10114)

Co-authored-by: zeripath <art27@cantab.net>
mj
6543 4 years ago committed by GitHub
parent 2c903383b5
commit e959d1a48b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -538,13 +538,17 @@ func Issues(ctx *context.Context) {
}
}
issueStats, err := models.GetUserIssueStats(models.UserIssueStatsOptions{
issueStatsOpts := models.UserIssueStatsOptions{
UserID: ctxUser.ID,
UserRepoIDs: userRepoIDs,
FilterMode: filterMode,
IsPull: isPullList,
IsClosed: isShowClosed,
})
}
if len(repoIDs) > 0 {
issueStatsOpts.UserRepoIDs = repoIDs
}
issueStats, err := models.GetUserIssueStats(issueStatsOpts)
if err != nil {
ctx.ServerError("GetUserIssueStats", err)
return

Loading…
Cancel
Save