aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/repo/issue.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/repo/issue.go')
-rw-r--r--routers/web/repo/issue.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/routers/web/repo/issue.go b/routers/web/repo/issue.go
index 64c4ae41f4..1aaa27c2b0 100644
--- a/routers/web/repo/issue.go
+++ b/routers/web/repo/issue.go
@@ -327,6 +327,20 @@ func issues(ctx *context.Context, milestoneID, projectID int64, isPullOption uti
}
return 0
}
+
+ if ctx.Repo.CanWriteIssuesOrPulls(ctx.Params(":type") == "pulls") {
+ projects, _, err := models.GetProjects(models.ProjectSearchOptions{
+ RepoID: repo.ID,
+ Type: models.ProjectTypeRepository,
+ IsClosed: util.OptionalBoolOf(isShowClosed),
+ })
+ if err != nil {
+ ctx.ServerError("GetProjects", err)
+ return
+ }
+ ctx.Data["Projects"] = projects
+ }
+
ctx.Data["IssueStats"] = issueStats
ctx.Data["SelLabelIDs"] = labelIDs
ctx.Data["SelectLabels"] = selectLabels