aboutsummaryrefslogtreecommitdiff
path: root/cmd/web.go
diff options
context:
space:
mode:
author无闻 <joe2010xtmf@163.com>2014-09-01 00:12:58 +0800
committer无闻 <joe2010xtmf@163.com>2014-09-01 00:12:58 +0800
commit1ed67798acb532dd2e62d2f3cbdde7b34219bfec (patch)
tree1ec707518cb37307cd05fa5cf6ef6bbf670caf9b /cmd/web.go
parent5e6091a30ae4befd68041aaff3f70d7334ce1b1c (diff)
parent2bce24068dc3c64ee5e501c48b7f080c48383970 (diff)
Merge pull request #379 from compressed/slack
Slack Support
Diffstat (limited to 'cmd/web.go')
-rw-r--r--cmd/web.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/web.go b/cmd/web.go
index e0ef3a76..275d3fb9 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -284,9 +284,11 @@ func runWeb(*cli.Context) {
r.Route("/collaboration", "GET,POST", repo.SettingsCollaboration)
r.Get("/hooks", repo.Webhooks)
r.Get("/hooks/new", repo.WebHooksNew)
- r.Post("/hooks/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
+ r.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
+ r.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
r.Get("/hooks/:id", repo.WebHooksEdit)
- r.Post("/hooks/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
+ r.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
+ r.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
})
}, reqSignIn, middleware.RepoAssignment(true), reqTrueOwner)