Browse Source

working part of #9998 (#10114)

Co-authored-by: zeripath <art27@cantab.net>
for-closed-social
6543 4 years ago
committed by GitHub
parent
commit
e959d1a48b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      routers/user/home.go

+ 6
- 2
routers/user/home.go View File

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