add repo router

This commit is contained in:
Lunny Xiao 2014-03-13 11:56:25 +08:00
parent a9a5fb45f8
commit 08feaf3ded
4 changed files with 34 additions and 5 deletions

2
web.go
View file

@ -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)