add organization team-create page

This commit is contained in:
fuxiaohei 2014-06-27 22:04:04 +08:00
parent b5ba2bd268
commit 1d55ecd29c
4 changed files with 83 additions and 2 deletions

View file

@ -195,7 +195,8 @@ func runWeb(*cli.Context) {
r.Get("/:org/dashboard", org.Dashboard)
r.Get("/:org/members", org.Members)
// organization teams
r.Get("/:org/teams/new",org.NewTeam)
r.Get("/:org/teams/:team/edit", org.EditTeam)
r.Get("/:org/teams/new", org.NewTeam)
r.Get("/:org/teams", org.Teams)
r.Get("/:org/settings", org.Settings)