From 32550159de8981942f6afdf5dfef5d31f0424ee4 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Mon, 12 Jun 2017 19:24:45 -0230 Subject: [PATCH] github_webhook: Use Integration.stream_name as recommended stream. --- zerver/lib/integrations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zerver/lib/integrations.py b/zerver/lib/integrations.py index 2c5f49de06..2e2a25624e 100644 --- a/zerver/lib/integrations.py +++ b/zerver/lib/integrations.py @@ -188,7 +188,8 @@ WEBHOOK_INTEGRATIONS = [ display_name='GitHub', logo='static/images/integrations/logos/github.svg', secondary_line_text='(webhook)', - function='zerver.webhooks.github_webhook.view.api_github_webhook' + function='zerver.webhooks.github_webhook.view.api_github_webhook', + stream_name='github' ), WebhookIntegration('gitlab', display_name='GitLab'), WebhookIntegration('gogs'),