diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-13 12:16:51 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-13 12:16:51 +0800 |
commit | 555c8f1d919eae951bf7f75f4bc6a150ec04b9a6 (patch) | |
tree | ba7626e08bbb06ea4261bf6b41fcd1b82369d3ee /web.go | |
parent | 4fff38856e784cb1c2c8115a7c7e013f42f7d8d8 (diff) | |
parent | 9b845c11150102894a8bb453d86a335a7c2a64b8 (diff) | |
download | gitea-555c8f1d919eae951bf7f75f4bc6a150ec04b9a6.tar.gz gitea-555c8f1d919eae951bf7f75f4bc6a150ec04b9a6.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'web.go')
-rw-r--r-- | web.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,8 @@ func runWeb(*cli.Context) { m.Get("/user/:username", auth.SignInRequire(false), user.Profile) + m.Get("/:username/:reponame", repo.Repo) + m.Any("/repo/create", auth.SignInRequire(true), binding.BindIgnErr(auth.CreateRepoForm{}), repo.Create) m.Any("/repo/delete", auth.SignInRequire(true), repo.Delete) m.Any("/repo/list", auth.SignInRequire(false), repo.List) |