aboutsummaryrefslogtreecommitdiff
path: root/cmd/web.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-05-07 12:09:35 -0400
committerUnknown <joe2010xtmf@163.com>2014-05-07 12:09:35 -0400
commit6fb7229beaadb53f59cb85d80976f99708a7434d (patch)
tree8e7f2a445a84e82c043e20326aa1deb6ebf91ac7 /cmd/web.go
parent7407f9caf3e0baf3f9b7894fab021356662eed17 (diff)
parentd76772adb9206961a4b47569dfd86366329972b0 (diff)
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'cmd/web.go')
-rw-r--r--cmd/web.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 7d914ca6..897f6b95 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -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))