diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-07 12:09:35 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-07 12:09:35 -0400 |
commit | 6fb7229beaadb53f59cb85d80976f99708a7434d (patch) | |
tree | 8e7f2a445a84e82c043e20326aa1deb6ebf91ac7 /routers/repo | |
parent | 7407f9caf3e0baf3f9b7894fab021356662eed17 (diff) | |
parent | d76772adb9206961a4b47569dfd86366329972b0 (diff) | |
download | gitea-6fb7229beaadb53f59cb85d80976f99708a7434d.tar.gz gitea-6fb7229beaadb53f59cb85d80976f99708a7434d.zip |
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'routers/repo')
-rw-r--r-- | routers/repo/issue.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 2501e933c0..2a4c8e639f 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -362,3 +362,11 @@ func Comment(ctx *middleware.Context, params martini.Params) { ctx.Redirect(fmt.Sprintf("%s/issues/%d", ctx.Repo.RepoLink, index)) } + +func Milestones(ctx *middleware.Context) { + ctx.Data["Title"] = "Milestones" + ctx.Data["IsRepoToolbarIssues"] = true + ctx.Data["IsRepoToolbarIssuesList"] = true + + ctx.HTML(200, "issue/milestone") +} |