add organization team-create page
This commit is contained in:
parent
19e9104289
commit
b5ba2bd268
6 changed files with 100 additions and 5 deletions
|
@ -194,7 +194,10 @@ func runWeb(*cli.Context) {
|
|||
r.Get("/:org", org.Organization)
|
||||
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", org.Teams)
|
||||
|
||||
r.Get("/:org/settings", org.Settings)
|
||||
r.Post("/:org/settings", bindIgnErr(auth.OrgSettingForm{}), org.SettingsPost)
|
||||
}, reqSignIn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue