diff options
author | Unknwon <u@gogs.io> | 2015-11-26 17:33:45 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-26 17:33:45 -0500 |
commit | c50a3503e6e8ece0dabd109932a72fe093c3cab3 (patch) | |
tree | d9918c4b9c5d5efc94771cae22231fdcc0796102 /cmd | |
parent | 2b10fdc4dcb987b347b031f460cf4f02fd48a31a (diff) |
introduce git-shell
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -536,7 +536,8 @@ func runWeb(ctx *cli.Context) { m.Get("/?:page", repo.Wiki) m.Group("", func() { - m.Get("/_new", repo.NewWiki) + m.Combo("/_new").Get(repo.NewWiki). + Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost) m.Get("/:page/_edit", repo.EditWiki) }, reqSignIn) }, middleware.RepoRef()) |