summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
Diffstat (limited to 'routers')
-rw-r--r--routers/api/v1/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go
index b83cb36a70..55622da1d8 100644
--- a/routers/api/v1/api.go
+++ b/routers/api/v1/api.go
@@ -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)