HookType is case-sensitive

Update webhook wasn’t showing up because of the wrong case
tokarchuk/v1.17
Christopher Brickley 10 years ago
parent 8d2fe064c5
commit 7269b06fd5
  1. 4
      routers/repo/setting.go

@ -354,11 +354,11 @@ func WebHooksEdit(ctx *middleware.Context) {
case models.SLACK: case models.SLACK:
{ {
ctx.Data["SlackHook"] = w.GetSlackHook() ctx.Data["SlackHook"] = w.GetSlackHook()
ctx.Data["HookType"] = "slack" ctx.Data["HookType"] = "Slack"
} }
default: default:
{ {
ctx.Data["HookType"] = "gogs" ctx.Data["HookType"] = "Gogs"
} }
} }
w.GetEvent() w.GetEvent()

Loading…
Cancel
Save