Fix crash caused by #647 (#708)

This commit is contained in:
Bwko 2017-01-20 14:47:09 +01:00 committed by Lunny Xiao
parent 1610b9f547
commit 7e401b9e39
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ func RegisterRoutes(m *macaron.Macaron) {
Delete(org.ConcealMember)
})
m.Combo("/teams").Get(org.ListTeams).
Post("", bind(api.CreateTeamOption{}), org.CreateTeam)
Post(bind(api.CreateTeamOption{}), org.CreateTeam)
m.Group("/hooks", func() {
m.Combo("").Get(org.ListHooks).
Post(bind(api.CreateHookOption{}), org.CreateHook)