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 /cmd | |
parent | 7407f9caf3e0baf3f9b7894fab021356662eed17 (diff) | |
parent | d76772adb9206961a4b47569dfd86366329972b0 (diff) |
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -184,6 +184,7 @@ func runWeb(*cli.Context) { r.Get("/issues/new", repo.CreateIssue) r.Post("/issues/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost) r.Post("/issues/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue) + r.Get("/issues/milestones", repo.Milestones) r.Post("/comment/:action", repo.Comment) r.Get("/releases/new", repo.ReleasesNew) }, reqSignIn, middleware.RepoAssignment(true)) |